| Current Path : /var/www/surf/TYPO3/vendor/mask/mask/Classes/ItemsProcFuncs/ |
| Current File : //var/www/surf/TYPO3/vendor/mask/mask/Classes/ItemsProcFuncs/ColPosList.php |
<?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 MASK\Mask\ItemsProcFuncs;
use TYPO3\CMS\Core\Localization\LanguageService;
use TYPO3\CMS\Core\Utility\GeneralUtility;
/**
* Render the allowed colPos for nested content elements
*/
class ColPosList
{
/**
* Render the allowed colPos for nested content elements
* @param array $params
*/
public function itemsProcFunc(&$params, $parentObj): void
{
// if this tt_content element is inline element of mask
if ((int)$params['row']['colPos'] === 999) {
// only allow mask nested element column
$params['items'] = [
[
$this->getLanguageService()->sL('LLL:EXT:mask/Resources/Private/Language/locallang.xlf:mask_content_colpos'),
999,
null,
null,
],
];
// if it is not inline tt_content element
// and if other itemsProcFunc from other extension was available (e.g. gridelements),
// then call it now and let it render the items
} elseif (!empty($params['config']['m_itemsProcFunc'])) {
GeneralUtility::callUserFunction(
$params['config']['m_itemsProcFunc'],
$params,
$parentObj
);
}
}
protected function getLanguageService(): LanguageService
{
return $GLOBALS['LANG'];
}
}