TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,92 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the TYPO3 CMS project.
|
||||
*
|
||||
* It is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License, either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*
|
||||
* The TYPO3 project - inspiring people to share!
|
||||
*/
|
||||
|
||||
namespace TYPO3\CMS\Backend\View\BackendLayout\Grid;
|
||||
|
||||
use TYPO3\CMS\Backend\View\PageLayoutContext;
|
||||
|
||||
/**
|
||||
* Grid
|
||||
*
|
||||
* Main rows-and-columns structure representing the rows and columns of
|
||||
* a BackendLayout in object form. Contains getter methods to return rows
|
||||
* and sum of "colspan" values assigned to columns in rows.
|
||||
*
|
||||
* Contains a tree of grid-related objects:
|
||||
*
|
||||
* - Grid
|
||||
* - GridRow
|
||||
* - GridColumn
|
||||
* - GridColumnItem (one per record)
|
||||
*
|
||||
* Accessed in Fluid templates.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
class Grid
|
||||
{
|
||||
/**
|
||||
* @var GridRow[]
|
||||
*/
|
||||
protected array $rows = [];
|
||||
|
||||
public function __construct(
|
||||
protected readonly PageLayoutContext $context,
|
||||
) {}
|
||||
|
||||
public function getContext(): PageLayoutContext
|
||||
{
|
||||
return $this->context;
|
||||
}
|
||||
|
||||
public function addRow(GridRow $row): void
|
||||
{
|
||||
$this->rows[] = $row;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return GridRow[]
|
||||
*/
|
||||
public function getRows(): iterable
|
||||
{
|
||||
return $this->rows;
|
||||
}
|
||||
|
||||
public function getColumns(): iterable
|
||||
{
|
||||
$columns = [];
|
||||
foreach ($this->rows as $gridRow) {
|
||||
$columns += $gridRow->getColumns();
|
||||
}
|
||||
return $columns;
|
||||
}
|
||||
|
||||
public function getSpan(): int
|
||||
{
|
||||
if (!isset($this->rows[0])
|
||||
|| ($this->context->getDrawingConfiguration()->isLanguageComparisonMode()
|
||||
&& count($this->context->getDrawingConfiguration()->getSelectedLanguageIds()) > 1)
|
||||
) {
|
||||
return 1;
|
||||
}
|
||||
$span = 0;
|
||||
foreach ($this->rows[0]->getColumns() as $column) {
|
||||
$span += $column->getColSpan();
|
||||
}
|
||||
return $span ?: 1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,259 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the TYPO3 CMS project.
|
||||
*
|
||||
* It is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License, either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*
|
||||
* The TYPO3 project - inspiring people to share!
|
||||
*/
|
||||
|
||||
namespace TYPO3\CMS\Backend\View\BackendLayout\Grid;
|
||||
|
||||
use TYPO3\CMS\Backend\Routing\UriBuilder;
|
||||
use TYPO3\CMS\Backend\View\PageLayoutContext;
|
||||
use TYPO3\CMS\Core\Authentication\BackendUserAuthentication;
|
||||
use TYPO3\CMS\Core\Localization\LanguageService;
|
||||
use TYPO3\CMS\Core\Page\ContentSlideMode;
|
||||
use TYPO3\CMS\Core\Schema\Capability\TcaSchemaCapability;
|
||||
use TYPO3\CMS\Core\Schema\TcaSchemaFactory;
|
||||
use TYPO3\CMS\Core\Type\Bitmask\Permission;
|
||||
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
||||
|
||||
/**
|
||||
* Grid Column
|
||||
*
|
||||
* Object representation (model/proxy) for a single column from a grid defined
|
||||
* in a BackendLayout. Stores GridColumnItem representations of content records
|
||||
* and provides getter methods which return various properties associated with
|
||||
* a single column, e.g. the "edit all elements in content" URL and the "add
|
||||
* new content element" URL of the button that is placed in the top of columns
|
||||
* in the page layout.
|
||||
*
|
||||
* Accessed from Fluid templates.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
class GridColumn
|
||||
{
|
||||
/**
|
||||
* @var GridColumnItem[]
|
||||
*/
|
||||
protected array $items = [];
|
||||
|
||||
protected readonly ?int $columnNumber;
|
||||
protected readonly string $columnName;
|
||||
protected readonly string $icon;
|
||||
protected readonly int $colSpan;
|
||||
protected readonly int $rowSpan;
|
||||
protected readonly ?string $identifier;
|
||||
protected readonly ContentSlideMode $slideMode;
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $definition
|
||||
*/
|
||||
public function __construct(
|
||||
protected readonly PageLayoutContext $context,
|
||||
protected readonly array $definition,
|
||||
protected readonly string $table = 'tt_content'
|
||||
) {
|
||||
$this->columnNumber = isset($definition['colPos']) ? (int)$definition['colPos'] : null;
|
||||
$this->columnName = (string)($definition['name'] ?? 'default');
|
||||
$this->icon = (string)($definition['icon'] ?? '');
|
||||
$this->colSpan = (int)($definition['colspan'] ?? 1);
|
||||
$this->rowSpan = (int)($definition['rowspan'] ?? 1);
|
||||
$this->identifier = isset($definition['identifier']) ? (string)$definition['identifier'] : null;
|
||||
$this->slideMode = ContentSlideMode::tryFrom($definition['slideMode'] ?? null);
|
||||
}
|
||||
|
||||
public function getContext(): PageLayoutContext
|
||||
{
|
||||
return $this->context;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function getDefinition(): array
|
||||
{
|
||||
return $this->definition;
|
||||
}
|
||||
|
||||
public function isActive(): bool
|
||||
{
|
||||
return $this->columnNumber !== null && in_array($this->columnNumber, $this->context->getDrawingConfiguration()->getActiveColumns());
|
||||
}
|
||||
|
||||
public function addItem(GridColumnItem $item): void
|
||||
{
|
||||
$this->items[] = $item;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return GridColumnItem[]
|
||||
*/
|
||||
public function getItems(): iterable
|
||||
{
|
||||
return $this->items;
|
||||
}
|
||||
|
||||
public function getColumnNumber(): ?int
|
||||
{
|
||||
return $this->columnNumber;
|
||||
}
|
||||
|
||||
public function getColumnName(): string
|
||||
{
|
||||
return $this->columnName;
|
||||
}
|
||||
|
||||
public function getIcon(): string
|
||||
{
|
||||
return $this->icon;
|
||||
}
|
||||
|
||||
public function getColSpan(): int
|
||||
{
|
||||
if ($this->context->getDrawingConfiguration()->isLanguageComparisonMode()) {
|
||||
return 1;
|
||||
}
|
||||
return $this->colSpan;
|
||||
}
|
||||
|
||||
public function getRowSpan(): int
|
||||
{
|
||||
if ($this->context->getDrawingConfiguration()->isLanguageComparisonMode()) {
|
||||
return 1;
|
||||
}
|
||||
return $this->rowSpan;
|
||||
}
|
||||
|
||||
public function getIdentifier(): ?string
|
||||
{
|
||||
return $this->identifier;
|
||||
}
|
||||
|
||||
public function getIdentifierCleaned(): string
|
||||
{
|
||||
return strtolower((string)preg_replace('/[^a-zA-Z0-9_-]/', '', (string)$this->identifier));
|
||||
}
|
||||
|
||||
public function getSlideMode(): ContentSlideMode
|
||||
{
|
||||
return $this->slideMode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return int[]
|
||||
*/
|
||||
public function getAllContainedItemUids(): array
|
||||
{
|
||||
$uids = [];
|
||||
foreach ($this->items as $columnItem) {
|
||||
$uids[] = $columnItem->getRecord()->getUid();
|
||||
}
|
||||
return $uids;
|
||||
}
|
||||
|
||||
public function getEditUrl(): ?string
|
||||
{
|
||||
if (empty($this->items)) {
|
||||
return null;
|
||||
}
|
||||
$pageRecord = $this->context->getPageRecord();
|
||||
if (!$this->getBackendUser()->doesUserHaveAccess($pageRecord, Permission::CONTENT_EDIT)
|
||||
|| !$this->getBackendUser()->checkLanguageAccess($this->context->getSiteLanguage())) {
|
||||
return null;
|
||||
}
|
||||
$uriBuilder = GeneralUtility::makeInstance(UriBuilder::class);
|
||||
return (string)$uriBuilder->buildUriFromRoute('record_edit', [
|
||||
'edit' => [
|
||||
$this->table => [
|
||||
implode(',', $this->getAllContainedItemUids()) => 'edit',
|
||||
],
|
||||
],
|
||||
'module' => 'web_layout',
|
||||
'returnUrl' => $this->context->getReturnUrl(),
|
||||
]);
|
||||
}
|
||||
|
||||
public function getNewContentUrl(): string
|
||||
{
|
||||
$uriBuilder = GeneralUtility::makeInstance(UriBuilder::class);
|
||||
$pageId = $this->context->getPageId();
|
||||
|
||||
return (string)$uriBuilder->buildUriFromRoute('new_content_element_wizard', [
|
||||
'id' => $pageId,
|
||||
'sys_language_uid' => $this->context->getSiteLanguage()->getLanguageId(),
|
||||
'colPos' => $this->getColumnNumber(),
|
||||
'uid_pid' => $pageId,
|
||||
'returnUrl' => $this->context->getReturnUrl(),
|
||||
]);
|
||||
}
|
||||
|
||||
public function getTitle(): string
|
||||
{
|
||||
$columnNumber = $this->getColumnNumber();
|
||||
$colTitle = '';
|
||||
foreach ($this->context->getBackendLayout()->getUsedColumns() as $colPos => $title) {
|
||||
if ($colPos === $columnNumber) {
|
||||
$colTitle = $this->getLanguageService()->sL($title);
|
||||
}
|
||||
}
|
||||
return $colTitle;
|
||||
}
|
||||
|
||||
public function getTitleInaccessible(): string
|
||||
{
|
||||
return $this->getLanguageService()->sL($this->columnName) . ' (' . $this->getLanguageService()->sL('LLL:EXT:backend/Resources/Private/Language/locallang_layout.xlf:noAccess') . ')';
|
||||
}
|
||||
|
||||
public function getTitleUnassigned(): string
|
||||
{
|
||||
return $this->getLanguageService()->sL($this->columnName) . ' (' . $this->getLanguageService()->sL('LLL:EXT:backend/Resources/Private/Language/locallang_layout.xlf:notAssigned') . ')';
|
||||
}
|
||||
|
||||
public function isUnassigned(): bool
|
||||
{
|
||||
return $this->columnName !== 'unused' && $this->columnNumber === null;
|
||||
}
|
||||
|
||||
public function isUnused(): bool
|
||||
{
|
||||
return $this->columnName === 'unused' && $this->columnNumber === null;
|
||||
}
|
||||
|
||||
public function isContentEditable(): bool
|
||||
{
|
||||
if ($this->columnName === 'unused' || $this->columnNumber === null) {
|
||||
return false;
|
||||
}
|
||||
if ($this->getBackendUser()->isAdmin()) {
|
||||
return true;
|
||||
}
|
||||
$pageRecord = $this->context->getPageRecord();
|
||||
return $this->getBackendUser()->doesUserHaveAccess($pageRecord, Permission::CONTENT_EDIT)
|
||||
&& $this->getBackendUser()->checkLanguageAccess($this->context->getSiteLanguage())
|
||||
&& (
|
||||
!($pagesSchema = GeneralUtility::makeInstance(TcaSchemaFactory::class)->get('pages'))->hasCapability(TcaSchemaCapability::EditLock)
|
||||
|| !($pageRecord[$pagesSchema->getCapability(TcaSchemaCapability::EditLock)->getFieldName()] ?? false)
|
||||
);
|
||||
}
|
||||
|
||||
protected function getLanguageService(): LanguageService
|
||||
{
|
||||
return $GLOBALS['LANG'];
|
||||
}
|
||||
|
||||
protected function getBackendUser(): BackendUserAuthentication
|
||||
{
|
||||
return $GLOBALS['BE_USER'];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,475 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the TYPO3 CMS project.
|
||||
*
|
||||
* It is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License, either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*
|
||||
* The TYPO3 project - inspiring people to share!
|
||||
*/
|
||||
|
||||
namespace TYPO3\CMS\Backend\View\BackendLayout\Grid;
|
||||
|
||||
use Psr\EventDispatcher\EventDispatcherInterface;
|
||||
use TYPO3\CMS\Backend\Domain\Repository\Localization\LocalizationRepository;
|
||||
use TYPO3\CMS\Backend\Preview\StandardPreviewRendererResolver;
|
||||
use TYPO3\CMS\Backend\Routing\UriBuilder;
|
||||
use TYPO3\CMS\Backend\Utility\BackendUtility;
|
||||
use TYPO3\CMS\Backend\View\BackendLayoutView;
|
||||
use TYPO3\CMS\Backend\View\Event\AfterPageContentPreviewRenderedEvent;
|
||||
use TYPO3\CMS\Backend\View\Event\PageContentPreviewRenderingEvent;
|
||||
use TYPO3\CMS\Backend\View\PageLayoutContext;
|
||||
use TYPO3\CMS\Core\Authentication\BackendUserAuthentication;
|
||||
use TYPO3\CMS\Core\Database\ReferenceIndex;
|
||||
use TYPO3\CMS\Core\Domain\RecordInterface;
|
||||
use TYPO3\CMS\Core\Imaging\IconFactory;
|
||||
use TYPO3\CMS\Core\Imaging\IconSize;
|
||||
use TYPO3\CMS\Core\Localization\LanguageService;
|
||||
use TYPO3\CMS\Core\Schema\Capability\TcaSchemaCapability;
|
||||
use TYPO3\CMS\Core\Schema\SchemaLabelResolver;
|
||||
use TYPO3\CMS\Core\Schema\TcaSchema;
|
||||
use TYPO3\CMS\Core\Schema\TcaSchemaFactory;
|
||||
use TYPO3\CMS\Core\Site\Entity\SiteLanguage;
|
||||
use TYPO3\CMS\Core\Type\Bitmask\Permission;
|
||||
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
||||
|
||||
/**
|
||||
* Grid Column Item
|
||||
*
|
||||
* Model/proxy around a single record which appears in a grid column
|
||||
* in the page layout. Returns titles, urls etc. and performs basic
|
||||
* assertions on the contained content element record such as
|
||||
* is-versioned, is-editable, is-delible and so on.
|
||||
*
|
||||
* Accessed from Fluid templates.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
class GridColumnItem
|
||||
{
|
||||
/**
|
||||
* @var GridColumnItem[]
|
||||
*/
|
||||
protected array $translations = [];
|
||||
protected TcaSchema $schema;
|
||||
protected BackendLayoutView $backendLayoutView;
|
||||
protected readonly IconFactory $iconFactory;
|
||||
|
||||
public function __construct(
|
||||
protected readonly PageLayoutContext $context,
|
||||
protected readonly GridColumn $column,
|
||||
protected RecordInterface $record,
|
||||
protected readonly string $table = 'tt_content'
|
||||
) {
|
||||
$this->iconFactory = GeneralUtility::makeInstance(IconFactory::class);
|
||||
$this->schema = GeneralUtility::makeInstance(TcaSchemaFactory::class)->get($this->table);
|
||||
$this->backendLayoutView = GeneralUtility::makeInstance(BackendLayoutView::class);
|
||||
}
|
||||
|
||||
public function getContext(): PageLayoutContext
|
||||
{
|
||||
return $this->context;
|
||||
}
|
||||
|
||||
public function isVersioned(): bool
|
||||
{
|
||||
return $this->record->getComputedProperties()->getVersionedUid() > 0 || (int)($this->getRow()['t3ver_state'] ?? 0) !== 0;
|
||||
}
|
||||
|
||||
public function getPreview(): string
|
||||
{
|
||||
$eventDispatcher = GeneralUtility::makeInstance(EventDispatcherInterface::class);
|
||||
$previewRenderer = GeneralUtility::makeInstance(StandardPreviewRendererResolver::class)->resolveRendererFor($this->record);
|
||||
$previewHeader = $previewRenderer->renderPageModulePreviewHeader($this);
|
||||
|
||||
// Dispatch event to allow listeners adding an alternative content type
|
||||
// specific preview or to manipulate the content elements' record data.
|
||||
$event = $eventDispatcher->dispatch(
|
||||
new PageContentPreviewRenderingEvent($this->table, $this->getRecordType(), $this->record, $this->context)
|
||||
);
|
||||
|
||||
// Update the modified record data
|
||||
$this->record = $event->getRecord();
|
||||
|
||||
// Get specific preview from listeners. In case non was added,
|
||||
// fall back to the standard preview rendering workflow.
|
||||
$previewContent = $event->getPreviewContent();
|
||||
if ($previewContent === null) {
|
||||
$previewContent = $previewRenderer->renderPageModulePreviewContent($this);
|
||||
}
|
||||
|
||||
if (!$this->backendLayoutView->isCTypeAllowedInColPosByPage(
|
||||
$this->getRecordType(),
|
||||
$this->getColumn()->getColumnNumber() ?? 0,
|
||||
$this->getRecord()->getPid()
|
||||
)) {
|
||||
return '<span class="badge badge-warning">' . sprintf($this->getLanguageService()->sL('core.core:labels.typeNotAllowedInColumn'), $this->getContentTypeLabel()) . '</span>';
|
||||
}
|
||||
|
||||
$previewContent = $previewRenderer->wrapPageModulePreview($previewHeader, $previewContent, $this);
|
||||
$event = $eventDispatcher->dispatch(
|
||||
new AfterPageContentPreviewRenderedEvent($this->table, $this->getRecordType(), $this->record, $this->context, $previewContent)
|
||||
);
|
||||
return $event->getPreviewContent();
|
||||
}
|
||||
|
||||
public function getWrapperClassName(): string
|
||||
{
|
||||
$wrapperClassNames = [];
|
||||
if ($this->isDisabled()) {
|
||||
$wrapperClassNames[] = 't3-page-ce-hidden t3js-hidden-record';
|
||||
}
|
||||
if ($this->isInconsistentLanguage()
|
||||
|| !$this->backendLayoutView->isCTypeAllowedInColPosByPage(
|
||||
$this->getRecordType(),
|
||||
$this->getColumn()->getColumnNumber() ?? 0,
|
||||
$this->getRecord()->getPid()
|
||||
)
|
||||
) {
|
||||
$wrapperClassNames[] = 't3-page-ce-warning';
|
||||
}
|
||||
|
||||
return implode(' ', $wrapperClassNames);
|
||||
}
|
||||
|
||||
public function isDelible(): bool
|
||||
{
|
||||
$backendUser = $this->getBackendUser();
|
||||
if (!$backendUser->doesUserHaveAccess($this->context->getPageRecord(), Permission::CONTENT_EDIT)) {
|
||||
return false;
|
||||
}
|
||||
return !($backendUser->getTSConfig()['options.']['disableDelete.'][$this->table] ?? $backendUser->getTSConfig()['options.']['disableDelete'] ?? false);
|
||||
}
|
||||
|
||||
public function getDeleteUrl(): string
|
||||
{
|
||||
return (string)GeneralUtility::makeInstance(UriBuilder::class)->buildUriFromRoute(
|
||||
'tce_db',
|
||||
[
|
||||
'cmd' => [
|
||||
$this->table => [
|
||||
$this->record->getUid() => [
|
||||
'delete' => 1,
|
||||
],
|
||||
],
|
||||
],
|
||||
'redirect' => $this->context->getReturnUrl(),
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
public function getDeleteMessage(): string
|
||||
{
|
||||
$recordInfo = BackendUtility::cropToTitleLength(BackendUtility::getRecordTitle($this->table, $this->getRow()));
|
||||
if ($this->getBackendUser()->shallDisplayDebugInformation()) {
|
||||
$recordInfo .= ' [' . $this->table . ':' . $this->record->getUid() . ']';
|
||||
}
|
||||
|
||||
$refCountMsg = BackendUtility::referenceCount(
|
||||
$this->table,
|
||||
$this->record->getUid(),
|
||||
LF . $this->getLanguageService()->sL('core.core:labels.referencesToRecord'),
|
||||
(string)$this->getReferenceCount($this->record->getUid())
|
||||
);
|
||||
$translationCount = count(GeneralUtility::makeInstance(LocalizationRepository::class)->getRecordTranslations($this->table, $this->record->getUid()));
|
||||
if ($translationCount > 0) {
|
||||
$refCountMsg .= LF . sprintf(
|
||||
$this->getLanguageService()->sL('core.core:labels.translationsOfRecord'),
|
||||
$translationCount
|
||||
);
|
||||
}
|
||||
|
||||
return sprintf($this->getLanguageService()->sL('LLL:EXT:backend/Resources/Private/Language/locallang_layout.xlf:deleteWarning'), trim($recordInfo)) . $refCountMsg;
|
||||
}
|
||||
|
||||
public function getFooterInfo(): string
|
||||
{
|
||||
$previewRenderer = GeneralUtility::makeInstance(StandardPreviewRendererResolver::class)->resolveRendererFor($this->record);
|
||||
return $previewRenderer->renderPageModulePreviewFooter($this);
|
||||
}
|
||||
|
||||
public function getContentTypeLabel(): string
|
||||
{
|
||||
if (($recordType = $this->getRecordType()) === '') {
|
||||
return '';
|
||||
}
|
||||
|
||||
$contentTypeLabels = $this->context->getContentTypeLabels();
|
||||
$contentTypeLabel = $contentTypeLabels[$recordType] ?? '';
|
||||
if ($contentTypeLabel === '') {
|
||||
$contentTypeLabel = $this->getLabelFromItemListMerged();
|
||||
$contentTypeLabel = $this->getLanguageService()->sL($contentTypeLabel);
|
||||
}
|
||||
return $contentTypeLabel;
|
||||
}
|
||||
|
||||
public function getIcons(): string
|
||||
{
|
||||
$row = $this->record->getRawRecord()?->toArray() ?? [];
|
||||
$icons = [];
|
||||
|
||||
$icon = $this->iconFactory
|
||||
->getIconForRecord($this->table, $row, IconSize::SMALL)
|
||||
->setTitle(BackendUtility::getRecordIconAltText($row, $this->table, false))
|
||||
->render();
|
||||
if ($this->getBackendUser()->checkRecordEditAccess($this->table, $this->getRow())->isAllowed) {
|
||||
$icon = BackendUtility::wrapClickMenuOnIcon($icon, $this->table, $this->record->getUid());
|
||||
}
|
||||
$icons[] = $icon;
|
||||
|
||||
if ($lockInfo = BackendUtility::isRecordLocked($this->table, $this->record->getUid())) {
|
||||
$icons[] = '<a href="#" title="' . htmlspecialchars($lockInfo['msg']) . '">'
|
||||
. $this->iconFactory->getIcon('status-user-backend', IconSize::SMALL, 'overlay-edit')->render() . '</a>';
|
||||
}
|
||||
return implode(' ', $icons);
|
||||
}
|
||||
|
||||
public function getSiteLanguage(): SiteLanguage
|
||||
{
|
||||
return $this->context->getSiteLanguage((int)($this->getRow()[$this->schema->getCapability(TcaSchemaCapability::Language)->getLanguageField()->getName()] ?? 0));
|
||||
}
|
||||
|
||||
public function getRecord(): RecordInterface
|
||||
{
|
||||
return $this->record;
|
||||
}
|
||||
|
||||
public function getRow(): array
|
||||
{
|
||||
return $this->record->getRawRecord()?->toArray(true) ?? [];
|
||||
}
|
||||
|
||||
public function setRecord(RecordInterface $record): void
|
||||
{
|
||||
$this->record = $record;
|
||||
}
|
||||
|
||||
public function getColumn(): GridColumn
|
||||
{
|
||||
return $this->column;
|
||||
}
|
||||
|
||||
public function getTranslations(): array
|
||||
{
|
||||
return $this->translations;
|
||||
}
|
||||
|
||||
public function addTranslation(int $languageId, GridColumnItem $translation): GridColumnItem
|
||||
{
|
||||
$this->translations[$languageId] = $translation;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isDisabled(): bool
|
||||
{
|
||||
$row = $this->getRow();
|
||||
return (
|
||||
$this->schema->hasCapability(TcaSchemaCapability::RestrictionDisabledField)
|
||||
&& ($row[(string)$this->schema->getCapability(TcaSchemaCapability::RestrictionDisabledField)] ?? false)
|
||||
)
|
||||
|| (
|
||||
$this->schema->hasCapability(TcaSchemaCapability::RestrictionStartTime)
|
||||
&& ($row[(string)$this->schema->getCapability(TcaSchemaCapability::RestrictionStartTime)] ?? 0) > $GLOBALS['EXEC_TIME']
|
||||
)
|
||||
|| (
|
||||
$this->schema->hasCapability(TcaSchemaCapability::RestrictionEndTime)
|
||||
&& (($endTime = ($row[(string)$this->schema->getCapability(TcaSchemaCapability::RestrictionEndTime)] ?? 0)) !== 0 && $endTime < $GLOBALS['EXEC_TIME'])
|
||||
);
|
||||
}
|
||||
|
||||
public function isEditable(): bool
|
||||
{
|
||||
$backendUser = $this->getBackendUser();
|
||||
if ($backendUser->isAdmin()) {
|
||||
return true;
|
||||
}
|
||||
$pageRecord = $this->context->getPageRecord();
|
||||
return $backendUser->doesUserHaveAccess($pageRecord, Permission::CONTENT_EDIT)
|
||||
&& $backendUser->checkRecordEditAccess($this->table, $this->record)->isAllowed
|
||||
&& (
|
||||
!($pagesSchema = GeneralUtility::makeInstance(TcaSchemaFactory::class)->get('pages'))->hasCapability(TcaSchemaCapability::EditLock)
|
||||
|| !($pageRecord[$pagesSchema->getCapability(TcaSchemaCapability::EditLock)->getFieldName()] ?? false)
|
||||
);
|
||||
}
|
||||
|
||||
public function isDragAndDropAllowed(): bool
|
||||
{
|
||||
$pageRecord = $this->context->getPageRecord();
|
||||
$typeColumn = $this->getTypeColumn();
|
||||
return (int)($this->getRow()[$this->schema->getCapability(TcaSchemaCapability::Language)->getTranslationOriginPointerField()->getName()] ?? 0) === 0
|
||||
&& (
|
||||
$this->getBackendUser()->isAdmin()
|
||||
|| (
|
||||
(
|
||||
!($this->getRow()[$this->schema->getCapability(TcaSchemaCapability::EditLock)->getFieldName()] ?? false)
|
||||
&& (
|
||||
!($pagesSchema = GeneralUtility::makeInstance(TcaSchemaFactory::class)->get('pages'))->hasCapability(TcaSchemaCapability::EditLock)
|
||||
|| !($pageRecord[$pagesSchema->getCapability(TcaSchemaCapability::EditLock)->getFieldName()] ?? false)
|
||||
)
|
||||
)
|
||||
&& $this->getBackendUser()->doesUserHaveAccess($pageRecord, Permission::CONTENT_EDIT)
|
||||
&& $this->getBackendUser()->checkAuthMode($this->table, $typeColumn, $this->getRecordType())
|
||||
)
|
||||
)
|
||||
;
|
||||
}
|
||||
|
||||
public function isInconsistentLanguage(): bool
|
||||
{
|
||||
$allowInconsistentLanguageHandling = $this->context->getDrawingConfiguration()->getAllowInconsistentLanguageHandling();
|
||||
return !$allowInconsistentLanguageHandling
|
||||
&& $this->getSiteLanguage()->getLanguageId() !== 0
|
||||
&& $this->context->getLanguageModeIdentifier() === 'mixed'
|
||||
&& (int)($this->getRow()[$this->schema->getCapability(TcaSchemaCapability::Language)->getTranslationOriginPointerField()->getName()] ?? 0) === 0;
|
||||
}
|
||||
|
||||
public function getNewContentAfterUrl(): string
|
||||
{
|
||||
$uriBuilder = GeneralUtility::makeInstance(UriBuilder::class);
|
||||
return (string)$uriBuilder->buildUriFromRoute('new_content_element_wizard', [
|
||||
'id' => $this->context->getPageId(),
|
||||
'sys_language_uid' => $this->context->getSiteLanguage()->getLanguageId(),
|
||||
'colPos' => $this->column->getColumnNumber(),
|
||||
'uid_pid' => -$this->record->getUid(),
|
||||
'returnUrl' => $this->context->getReturnUrl(),
|
||||
]);
|
||||
}
|
||||
|
||||
public function getVisibilityToggleUrl(): string
|
||||
{
|
||||
$disabledFieldName = $this->getDisabledFieldName();
|
||||
if ($this->getRow()[$disabledFieldName] ?? false) {
|
||||
$value = 0;
|
||||
} else {
|
||||
$value = 1;
|
||||
}
|
||||
return GeneralUtility::makeInstance(UriBuilder::class)->buildUriFromRoute(
|
||||
'tce_db',
|
||||
[
|
||||
'data' => [
|
||||
$this->table => [
|
||||
$this->record->getComputedProperties()->getVersionedUid() ?: $this->record->getUid() => [
|
||||
$disabledFieldName => $value,
|
||||
],
|
||||
],
|
||||
],
|
||||
'redirect' => $this->context->getReturnUrl(),
|
||||
]
|
||||
) . '#element-' . $this->table . '-' . $this->record->getUid();
|
||||
}
|
||||
|
||||
public function getVisibilityToggleTitle(): string
|
||||
{
|
||||
if ($this->getRow()[$this->getDisabledFieldName()] ?? false) {
|
||||
return $this->getLanguageService()->sL('LLL:EXT:backend/Resources/Private/Language/locallang_layout.xlf:unHide');
|
||||
}
|
||||
return $this->getLanguageService()->sL('LLL:EXT:backend/Resources/Private/Language/locallang_layout.xlf:hide');
|
||||
}
|
||||
|
||||
public function getVisibilityToggleIconName(): string
|
||||
{
|
||||
return ($this->getRow()[$this->getDisabledFieldName()] ?? false) ? 'unhide' : 'hide';
|
||||
}
|
||||
|
||||
public function isVisibilityToggling(): bool
|
||||
{
|
||||
$disabledFieldName = $this->getDisabledFieldName();
|
||||
return $disabledFieldName
|
||||
&& $this->schema->hasField($disabledFieldName)
|
||||
&& (
|
||||
!$this->schema->getField($disabledFieldName)->supportsAccessControl()
|
||||
|| $this->getBackendUser()->check('non_exclude_fields', $this->table . ':' . $disabledFieldName)
|
||||
)
|
||||
;
|
||||
}
|
||||
|
||||
public function getEditUrl(): string
|
||||
{
|
||||
$urlParameters = [
|
||||
'edit' => [
|
||||
$this->table => [
|
||||
$this->record->getUid() => 'edit',
|
||||
],
|
||||
],
|
||||
'module' => 'web_layout',
|
||||
'returnUrl' => $this->context->getReturnUrl() . '#element-' . $this->table . '-' . $this->record->getUid(),
|
||||
];
|
||||
$uriBuilder = GeneralUtility::makeInstance(UriBuilder::class);
|
||||
return $uriBuilder->buildUriFromRoute('record_edit', $urlParameters) . '#element-' . $this->table . '-' . $this->record->getUid();
|
||||
}
|
||||
|
||||
public function getContextualEditUrl(): string
|
||||
{
|
||||
$urlParameters = [
|
||||
'edit' => [
|
||||
$this->table => [
|
||||
$this->record->getUid() => 'edit',
|
||||
],
|
||||
],
|
||||
'module' => 'web_layout',
|
||||
'returnUrl' => $this->context->getReturnUrl() . '#element-' . $this->table . '-' . $this->record->getUid(),
|
||||
];
|
||||
return (string)GeneralUtility::makeInstance(UriBuilder::class)->buildUriFromRoute('record_edit_contextual', $urlParameters);
|
||||
}
|
||||
|
||||
public function getTypeColumn(): string
|
||||
{
|
||||
// @todo This only supports local record types due to usages in this class
|
||||
return $this->schema->supportsSubSchema() && !$this->schema->getSubSchemaTypeInformation()->isPointerToForeignFieldInForeignSchema()
|
||||
? $this->schema->getSubSchemaTypeInformation()->getFieldName()
|
||||
: '';
|
||||
}
|
||||
|
||||
public function getRecordType(): string
|
||||
{
|
||||
return $this->record->getRecordType() ?? '';
|
||||
}
|
||||
|
||||
public function getTable(): string
|
||||
{
|
||||
return $this->table;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the number of records referencing the record with the UID $uid in
|
||||
* the current table.
|
||||
*
|
||||
* @return int The number of references to record $uid in table
|
||||
*/
|
||||
protected function getReferenceCount(int $uid): int
|
||||
{
|
||||
return GeneralUtility::makeInstance(ReferenceIndex::class)->getNumberOfReferencedRecords($this->table, $uid);
|
||||
}
|
||||
|
||||
protected function getLabelFromItemListMerged(): string
|
||||
{
|
||||
$table = $this->table;
|
||||
$typeColumn = $this->getTypeColumn();
|
||||
$recordType = $this->getRecordType();
|
||||
$columnTsConfig = BackendUtility::getPagesTSconfig($this->record->getPid())['TCEFORM.'][$table . '.'][$typeColumn . '.'] ?? [];
|
||||
return GeneralUtility::makeInstance(SchemaLabelResolver::class)
|
||||
->getLabelForFieldValue($table, $typeColumn, $recordType, $this->getRow(), is_array($columnTsConfig) ? $columnTsConfig : []);
|
||||
}
|
||||
|
||||
protected function getDisabledFieldName(): ?string
|
||||
{
|
||||
return $this->schema->hasCapability(TcaSchemaCapability::RestrictionDisabledField) ? (string)$this->schema->getCapability(TcaSchemaCapability::RestrictionDisabledField) : null;
|
||||
}
|
||||
|
||||
protected function getLanguageService(): LanguageService
|
||||
{
|
||||
return $GLOBALS['LANG'];
|
||||
}
|
||||
|
||||
protected function getBackendUser(): BackendUserAuthentication
|
||||
{
|
||||
return $GLOBALS['BE_USER'];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the TYPO3 CMS project.
|
||||
*
|
||||
* It is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License, either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*
|
||||
* The TYPO3 project - inspiring people to share!
|
||||
*/
|
||||
|
||||
namespace TYPO3\CMS\Backend\View\BackendLayout\Grid;
|
||||
|
||||
use TYPO3\CMS\Backend\View\PageLayoutContext;
|
||||
|
||||
/**
|
||||
* Grid Row
|
||||
*
|
||||
* Object representation of a single row of a grid defined in a BackendLayout.
|
||||
* Is solely responsible for grouping GridColumns.
|
||||
*
|
||||
* Accessed in Fluid templates.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
class GridRow
|
||||
{
|
||||
/**
|
||||
* @var GridColumn[]
|
||||
*/
|
||||
protected array $columns = [];
|
||||
|
||||
public function __construct(
|
||||
protected readonly PageLayoutContext $context,
|
||||
) {}
|
||||
|
||||
public function getContext(): PageLayoutContext
|
||||
{
|
||||
return $this->context;
|
||||
}
|
||||
|
||||
public function addColumn(GridColumn $column): void
|
||||
{
|
||||
$this->columns[$column->getColumnNumber() ?? ''] = $column;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return GridColumn[]
|
||||
*/
|
||||
public function getColumns(): iterable
|
||||
{
|
||||
return $this->columns;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,161 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the TYPO3 CMS project.
|
||||
*
|
||||
* It is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License, either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*
|
||||
* The TYPO3 project - inspiring people to share!
|
||||
*/
|
||||
|
||||
namespace TYPO3\CMS\Backend\View\BackendLayout\Grid;
|
||||
|
||||
use TYPO3\CMS\Backend\Routing\PreviewUriBuilder;
|
||||
use TYPO3\CMS\Backend\Routing\UriBuilder;
|
||||
use TYPO3\CMS\Backend\Utility\BackendUtility;
|
||||
use TYPO3\CMS\Backend\View\PageLayoutContext;
|
||||
use TYPO3\CMS\Core\Authentication\BackendUserAuthentication;
|
||||
use TYPO3\CMS\Core\Imaging\IconFactory;
|
||||
use TYPO3\CMS\Core\Imaging\IconSize;
|
||||
use TYPO3\CMS\Core\Schema\Capability\TcaSchemaCapability;
|
||||
use TYPO3\CMS\Core\Schema\TcaSchemaFactory;
|
||||
use TYPO3\CMS\Core\Type\Bitmask\Permission;
|
||||
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
||||
|
||||
/**
|
||||
* Language Column
|
||||
*
|
||||
* Object representation of a site language selected in the "page" module
|
||||
* to show translations of content elements.
|
||||
*
|
||||
* Contains getter methods to return various values associated with a single
|
||||
* language, e.g. localized page title, associated SiteLanguage instance,
|
||||
* edit URLs and link titles and so on.
|
||||
*
|
||||
* Stores a duplicated Grid object associated with the SiteLanguage.
|
||||
*
|
||||
* Accessed from Fluid templates - generated from within BackendLayout when
|
||||
* "page" module is in "languages" mode.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
class LanguageColumn
|
||||
{
|
||||
protected readonly IconFactory $iconFactory;
|
||||
|
||||
public function __construct(
|
||||
protected readonly PageLayoutContext $context,
|
||||
protected readonly Grid $grid,
|
||||
protected readonly array $translationInfo
|
||||
) {
|
||||
$this->iconFactory = GeneralUtility::makeInstance(IconFactory::class);
|
||||
}
|
||||
|
||||
public function getContext(): PageLayoutContext
|
||||
{
|
||||
return $this->context;
|
||||
}
|
||||
|
||||
public function getGrid(): Grid
|
||||
{
|
||||
return $this->grid;
|
||||
}
|
||||
|
||||
public function getPageIcon(): string
|
||||
{
|
||||
$localizedPageRecord = $this->context->getLocalizedPageRecord() ?? $this->context->getPageRecord();
|
||||
return BackendUtility::wrapClickMenuOnIcon(
|
||||
$this->iconFactory->getIconForRecord('pages', $localizedPageRecord, IconSize::SMALL)->render(),
|
||||
'pages',
|
||||
$localizedPageRecord['uid']
|
||||
);
|
||||
}
|
||||
|
||||
public function getAllowTranslate(): bool
|
||||
{
|
||||
return $this->context->getDrawingConfiguration()->translateModeForTranslationsAllowed() && !($this->getTranslationData()['hasStandAloneContent'] ?? false);
|
||||
}
|
||||
|
||||
public function getTranslationData(): array
|
||||
{
|
||||
return $this->translationInfo;
|
||||
}
|
||||
|
||||
public function getAllowTranslateCopy(): bool
|
||||
{
|
||||
return $this->context->getDrawingConfiguration()->copyModeForTranslationsAllowed() && !($this->getTranslationData()['hasTranslations'] ?? false);
|
||||
}
|
||||
|
||||
public function getAllowEditPage(): bool
|
||||
{
|
||||
return $this->getBackendUser()->doesUserHaveAccess($this->context->getPageRecord(), Permission::PAGE_EDIT)
|
||||
&& $this->getBackendUser()->check('tables_modify', 'pages')
|
||||
&& $this->getBackendUser()->checkLanguageAccess($this->context->getSiteLanguage());
|
||||
}
|
||||
|
||||
public function getPageRecordUid(): int
|
||||
{
|
||||
return $this->context->getLocalizedPageRecord()['uid'] ?? $this->context->getPageRecord()['uid'];
|
||||
}
|
||||
|
||||
public function getPageRecord(): array
|
||||
{
|
||||
return $this->context->getLocalizedPageRecord() ?: $this->context->getPageRecord();
|
||||
}
|
||||
|
||||
public function getPageEditUrl(): string
|
||||
{
|
||||
return (string)GeneralUtility::makeInstance(UriBuilder::class)->buildUriFromRoute('record_edit_contextual', $this->getPageEditUrlParameters());
|
||||
}
|
||||
|
||||
public function getFullPageEditUrl(): string
|
||||
{
|
||||
return (string)GeneralUtility::makeInstance(UriBuilder::class)->buildUriFromRoute('record_edit', $this->getPageEditUrlParameters());
|
||||
}
|
||||
|
||||
private function getPageEditUrlParameters(): array
|
||||
{
|
||||
$pageRecordUid = $this->getPageRecordUid();
|
||||
$urlParameters = [
|
||||
'edit' => [
|
||||
'pages' => [
|
||||
$pageRecordUid => 'edit',
|
||||
],
|
||||
],
|
||||
'module' => 'web_layout',
|
||||
'returnUrl' => $this->context->getReturnUrl(),
|
||||
];
|
||||
// Disallow manual adjustment of the language field for pages
|
||||
if (($languageField = GeneralUtility::makeInstance(TcaSchemaFactory::class)->get('pages')->getCapability(TcaSchemaCapability::Language)->getLanguageField()->getName()) !== '') {
|
||||
$urlParameters['overrideVals']['pages'][$languageField] = $this->context->getSiteLanguage()->getLanguageId();
|
||||
}
|
||||
return $urlParameters;
|
||||
}
|
||||
|
||||
public function getAllowViewPage(): bool
|
||||
{
|
||||
return PreviewUriBuilder::create($this->context->getLocalizedPageRecord() ?? $this->context->getPageRecord())->isPreviewable();
|
||||
}
|
||||
|
||||
public function getPreviewUrlAttributes(): string
|
||||
{
|
||||
$pageId = $this->context->getPageId();
|
||||
$languageId = $this->context->getSiteLanguage()->getLanguageId();
|
||||
return (string)PreviewUriBuilder::create($this->context->getLocalizedPageRecord() ?? $this->context->getPageRecord())
|
||||
->withRootLine(BackendUtility::BEgetRootLine($pageId))
|
||||
->withLanguage($languageId)
|
||||
->serializeDispatcherAttributes();
|
||||
}
|
||||
|
||||
protected function getBackendUser(): BackendUserAuthentication
|
||||
{
|
||||
return $GLOBALS['BE_USER'];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user