for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* (c) Kitodo. Key to digital objects e.V. <[email protected]>
*
* This file is part of the Kitodo and TYPO3 projects.
* @license GNU General Public License version 3 or later.
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/
namespace Kitodo\Dlf\ExpressionLanguage;
use TYPO3\CMS\Core\ExpressionLanguage\AbstractProvider;
use TYPO3\CMS\Core\ExpressionLanguage\FunctionsProvider\Typo3ConditionFunctionsProvider;
* Wrapper class to provide variables and functions for the ExpressionLanguage.
* @author Alexander Bigga <[email protected]>
* @package TYPO3
* @subpackage dlf
* @access public
class DocumentTypeProvider extends AbstractProvider
{
public function __construct()
$this->expressionLanguageProviders = [
DocumentTypeFunctionProvider::class
];
}