67 lines
2.0 KiB
PHP
67 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace GeorgRinger\News\Utility;
|
|
|
|
/**
|
|
* This file is part of the "news" Extension for TYPO3 CMS.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE.txt file that was distributed with this source code.
|
|
*/
|
|
use TYPO3\CMS\Backend\Utility\BackendUtility;
|
|
use TYPO3\CMS\Core\SingletonInterface;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
|
|
/**
|
|
* TemplateLayout utility class
|
|
*/
|
|
class TemplateLayout implements SingletonInterface
|
|
{
|
|
|
|
/**
|
|
* Get available template layouts for a certain page
|
|
*
|
|
* @param int $pageUid
|
|
* @return array
|
|
*/
|
|
public function getAvailableTemplateLayouts($pageUid): array
|
|
{
|
|
$templateLayouts = [];
|
|
|
|
// Check if the layouts are extended by ext_tables
|
|
if (isset($GLOBALS['TYPO3_CONF_VARS']['EXT']['news']['templateLayouts'])
|
|
&& is_array($GLOBALS['TYPO3_CONF_VARS']['EXT']['news']['templateLayouts'])
|
|
) {
|
|
$templateLayouts = $GLOBALS['TYPO3_CONF_VARS']['EXT']['news']['templateLayouts'];
|
|
}
|
|
|
|
// Add TsConfig values
|
|
foreach ($this->getTemplateLayoutsFromTsConfig($pageUid) as $templateKey => $title) {
|
|
if (str_starts_with($title, '--div--')) {
|
|
$optGroupParts = GeneralUtility::trimExplode(',', $title, true, 2);
|
|
$title = $optGroupParts[1];
|
|
$templateKey = $optGroupParts[0];
|
|
}
|
|
$templateLayouts[] = [$title, $templateKey];
|
|
}
|
|
|
|
return $templateLayouts;
|
|
}
|
|
|
|
/**
|
|
* Get template layouts defined in TsConfig
|
|
*
|
|
* @param $pageUid
|
|
* @return array
|
|
*/
|
|
protected function getTemplateLayoutsFromTsConfig(int $pageUid): array
|
|
{
|
|
$templateLayouts = [];
|
|
$pagesTsConfig = BackendUtility::getPagesTSconfig($pageUid);
|
|
if (isset($pagesTsConfig['tx_news.']['templateLayouts.']) && is_array($pagesTsConfig['tx_news.']['templateLayouts.'])) {
|
|
$templateLayouts = $pagesTsConfig['tx_news.']['templateLayouts.'];
|
|
}
|
|
return $templateLayouts;
|
|
}
|
|
}
|