| Current Path : /var/www/surf/TYPO3/vendor/b13/container/Classes/Hooks/ |
| Current File : //var/www/surf/TYPO3/vendor/b13/container/Classes/Hooks/TableConfigurationPostProcessing.php |
<?php
declare(strict_types=1);
namespace B13\Container\Hooks;
/*
* This file is part of TYPO3 CMS-based extension "container" by b13.
*
* 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.
*/
use B13\Container\Tca\Registry;
use TYPO3\CMS\Core\Database\TableConfigurationPostProcessingHookInterface;
class TableConfigurationPostProcessing implements TableConfigurationPostProcessingHookInterface
{
/**
* @var Registry
*/
protected $tcaRegistry;
public function __construct(Registry $tcaRegistry)
{
$this->tcaRegistry = $tcaRegistry;
}
public function processData()
{
$this->tcaRegistry->registerIcons();
}
}