66 lines
2.4 KiB
PHP
66 lines
2.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* 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\Form\FormDataProvider;
|
|
|
|
use TYPO3\CMS\Backend\Form\FormDataProviderInterface;
|
|
use TYPO3\CMS\Core\Utility\ArrayUtility;
|
|
|
|
/**
|
|
* Page TSconfig relevant for this record
|
|
*/
|
|
class PageTsConfigMerged implements FormDataProviderInterface
|
|
{
|
|
/**
|
|
* Merge type specific page TS to page TSconfig
|
|
*
|
|
* @return array
|
|
*/
|
|
public function addData(array $result)
|
|
{
|
|
$mergedTsConfig = $result['pageTsConfig'];
|
|
|
|
if (empty($result['pageTsConfig']['TCEFORM.']) || !is_array($result['pageTsConfig']['TCEFORM.'])) {
|
|
$result['pageTsConfig'] = $mergedTsConfig;
|
|
return $result;
|
|
}
|
|
|
|
$mergedTsConfig = $result['pageTsConfig'];
|
|
$type = $result['recordTypeValue'];
|
|
$table = $result['tableName'];
|
|
|
|
// Merge TCEFORM.[table name].[field].types.[type] over TCEFORM.[table name].[field]
|
|
if (!empty($result['pageTsConfig']['TCEFORM.'][$table . '.'])
|
|
&& is_array($result['pageTsConfig']['TCEFORM.'][$table . '.'])
|
|
) {
|
|
foreach ($result['pageTsConfig']['TCEFORM.'][$table . '.'] as $fieldNameWithDot => $fullFieldConfiguration) {
|
|
$newFieldConfiguration = $fullFieldConfiguration;
|
|
if (!empty($fullFieldConfiguration['types.']) && is_array($fullFieldConfiguration['types.'])) {
|
|
$typeSpecificConfiguration = $newFieldConfiguration['types.'];
|
|
unset($newFieldConfiguration['types.']);
|
|
if (!empty($typeSpecificConfiguration[$type . '.']) && is_array($typeSpecificConfiguration[$type . '.'])) {
|
|
ArrayUtility::mergeRecursiveWithOverrule($newFieldConfiguration, $typeSpecificConfiguration[$type . '.']);
|
|
}
|
|
}
|
|
$mergedTsConfig['TCEFORM.'][$table . '.'][$fieldNameWithDot] = $newFieldConfiguration;
|
|
}
|
|
}
|
|
|
|
$result['pageTsConfig'] = $mergedTsConfig;
|
|
|
|
return $result;
|
|
}
|
|
}
|