TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,160 @@
|
||||
<?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\Fluid\ViewHelpers\Be;
|
||||
|
||||
use Psr\Http\Message\ServerRequestInterface;
|
||||
use TYPO3\CMS\Backend\Module\ModuleData;
|
||||
use TYPO3\CMS\Backend\RecordList\DatabaseRecordList;
|
||||
use TYPO3\CMS\Backend\Utility\BackendUtility;
|
||||
use TYPO3\CMS\Core\Authentication\BackendUserAuthentication;
|
||||
use TYPO3\CMS\Core\Page\PageRenderer;
|
||||
use TYPO3\CMS\Core\Type\Bitmask\Permission;
|
||||
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
||||
use TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface;
|
||||
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;
|
||||
|
||||
/**
|
||||
* ViewHelper which renders a record list as known from the TYPO3 records module.
|
||||
*
|
||||
* ```
|
||||
* <f:be.tableList tableName="fe_users"
|
||||
* fieldList="{0: 'name', 1: 'email'}"
|
||||
* storagePid="1"
|
||||
* levels="2"
|
||||
* filter="foo"
|
||||
* recordsPerPage="10"
|
||||
* sortField="name"
|
||||
* sortDescending="true"
|
||||
* readOnly="true"
|
||||
* enableClickMenu="false"
|
||||
* enableControlPanels="true"
|
||||
* clickTitleMode="info"
|
||||
* />
|
||||
* ```
|
||||
*
|
||||
* **Note:** This feature is experimental!
|
||||
*
|
||||
* @see https://docs.typo3.org/permalink/t3viewhelper:typo3-fluid-be-tablelist
|
||||
*/
|
||||
final class TableListViewHelper extends AbstractViewHelper
|
||||
{
|
||||
/**
|
||||
* As this ViewHelper renders HTML, the output must not be escaped.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $escapeOutput = false;
|
||||
|
||||
public function __construct(
|
||||
private readonly ConfigurationManagerInterface $configurationManager,
|
||||
private readonly PageRenderer $pageRenderer,
|
||||
) {}
|
||||
|
||||
public function initializeArguments(): void
|
||||
{
|
||||
parent::initializeArguments();
|
||||
$this->registerArgument('tableName', 'string', 'name of the database table', true);
|
||||
$this->registerArgument('fieldList', 'array', 'list of fields to be displayed. If empty, only the title column (configured in $TCA[$tableName][\'ctrl\'][\'title\']) is shown', false, []);
|
||||
$this->registerArgument('storagePid', 'int', 'by default, records are fetched from the storage PID configured in persistence.storagePid. With this argument, the storage PID can be overwritten');
|
||||
$this->registerArgument('levels', 'int', 'corresponds to the level selector of the TYPO3 records module. By default only records from the current storagePid are fetched', false, 0);
|
||||
$this->registerArgument('filter', 'string', 'corresponds to the "Search String" textbox of the TYPO3 records module. If not empty, only records matching the string will be fetched', false, '');
|
||||
$this->registerArgument('recordsPerPage', 'int', 'amount of records to be displayed at once. Defaults to 100', false, 0);
|
||||
$this->registerArgument('sortField', 'string', 'table field to sort the results by', false, '');
|
||||
$this->registerArgument('sortDescending', 'bool', 'if TRUE records will be sorted in descending order', false, false);
|
||||
$this->registerArgument('readOnly', 'bool', 'if TRUE, the edit icons won\'t be shown. Otherwise edit icons will be shown, if the current BE user has edit rights for the specified table!', false, false);
|
||||
$this->registerArgument('enableClickMenu', 'bool', 'enables context menu', false, true);
|
||||
$this->registerArgument('enableControlPanels', 'bool', 'enables control panels', false, false);
|
||||
$this->registerArgument('clickTitleMode', 'string', 'one of "edit", "show" (only pages, tt_content), "info', false, '');
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders a record list as known from the TYPO3 records module
|
||||
* Note: This feature is experimental!
|
||||
*
|
||||
* @see DatabaseRecordList
|
||||
*/
|
||||
public function render(): string
|
||||
{
|
||||
$tableName = $this->arguments['tableName'];
|
||||
$fieldList = $this->arguments['fieldList'];
|
||||
$storagePid = $this->arguments['storagePid'];
|
||||
$levels = $this->arguments['levels'];
|
||||
$filter = $this->arguments['filter'];
|
||||
$recordsPerPage = $this->arguments['recordsPerPage'];
|
||||
$sortField = $this->arguments['sortField'];
|
||||
$sortDescending = $this->arguments['sortDescending'];
|
||||
$readOnly = $this->arguments['readOnly'];
|
||||
$enableClickMenu = $this->arguments['enableClickMenu'];
|
||||
$clickTitleMode = $this->arguments['clickTitleMode'];
|
||||
$enableControlPanels = $this->arguments['enableControlPanels'];
|
||||
|
||||
$backendUser = $this->getBackendUser();
|
||||
if (!$this->renderingContext->hasAttribute(ServerRequestInterface::class)) {
|
||||
// All views in backend have at least ServerRequestInterface. Should be fine
|
||||
// to assume having a request here, the early return is just sanitation.
|
||||
return '';
|
||||
}
|
||||
$request = $this->renderingContext->getAttribute(ServerRequestInterface::class);
|
||||
|
||||
$this->pageRenderer->loadJavaScriptModule('@typo3/backend/recordlist.js');
|
||||
$this->pageRenderer->loadJavaScriptModule('@typo3/backend/record-download-button.js');
|
||||
$this->pageRenderer->loadJavaScriptModule('@typo3/backend/action-dispatcher.js');
|
||||
$this->pageRenderer->loadJavaScriptModule('@typo3/backend/page-wizard/new-page-wizard-button.js');
|
||||
if ($enableControlPanels === true) {
|
||||
$this->pageRenderer->loadJavaScriptModule('@typo3/backend/multi-record-selection.js');
|
||||
$this->pageRenderer->loadJavaScriptModule('@typo3/backend/multi-record-selection-delete-action.js');
|
||||
$this->pageRenderer->loadJavaScriptModule('@typo3/backend/context-menu.js');
|
||||
}
|
||||
|
||||
$pageId = (int)($request->getParsedBody()['id'] ?? $request->getQueryParams()['id'] ?? 0);
|
||||
$pointer = (int)($request->getParsedBody()['pointer'] ?? $request->getQueryParams()['pointer'] ?? 0);
|
||||
$pageInfo = BackendUtility::readPageAccess($pageId, $backendUser->getPagePermsClause(Permission::PAGE_SHOW)) ?: [];
|
||||
$existingModuleData = $backendUser->getModuleData('records');
|
||||
$moduleData = new ModuleData('records', is_array($existingModuleData) ? $existingModuleData : []);
|
||||
|
||||
$dbList = GeneralUtility::makeInstance(DatabaseRecordList::class);
|
||||
$dbList->setRequest($request->withoutAttribute('pageContext'));
|
||||
$dbList->setModuleData($moduleData);
|
||||
$dbList->pageRow = $pageInfo;
|
||||
if ($readOnly) {
|
||||
$dbList->setIsEditable(false);
|
||||
} else {
|
||||
$dbList->calcPerms = new Permission($backendUser->calcPerms($pageInfo));
|
||||
}
|
||||
$dbList->disableSingleTableView = true;
|
||||
$dbList->clickTitleMode = $clickTitleMode;
|
||||
$dbList->clickMenuEnabled = $enableClickMenu;
|
||||
if ($storagePid === null) {
|
||||
$frameworkConfiguration = $this->configurationManager->getConfiguration(ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK);
|
||||
$storagePid = $frameworkConfiguration['persistence']['storagePid'];
|
||||
}
|
||||
$dbList->start($storagePid, $tableName, $pointer, $filter, $levels, $recordsPerPage);
|
||||
// Column selector is disabled since fields are defined by the "fieldList" argument
|
||||
$dbList->displayColumnSelector = false;
|
||||
$dbList->setFields = [$tableName => $fieldList];
|
||||
$dbList->noControlPanels = !$enableControlPanels;
|
||||
$dbList->sortField = $sortField;
|
||||
$dbList->sortRev = $sortDescending;
|
||||
return $dbList->generateList();
|
||||
}
|
||||
|
||||
private function getBackendUser(): BackendUserAuthentication
|
||||
{
|
||||
return $GLOBALS['BE_USER'];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user