39 lines
861 B
PHP
39 lines
861 B
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* hold PhpMyAdmin\Twig\TransformationsExtension class
|
|
*
|
|
* @package PhpMyAdmin\Twig
|
|
*/
|
|
namespace PhpMyAdmin\Twig;
|
|
|
|
use Twig\Extension\AbstractExtension;
|
|
use Twig\TwigFunction;
|
|
|
|
/**
|
|
* Class TransformationsExtension
|
|
*
|
|
* @package PhpMyAdmin\Twig
|
|
*/
|
|
class TransformationsExtension extends AbstractExtension
|
|
{
|
|
/**
|
|
* Returns a list of functions to add to the existing list.
|
|
*
|
|
* @return TwigFunction[]
|
|
*/
|
|
public function getFunctions()
|
|
{
|
|
return array(
|
|
new TwigFunction(
|
|
'Transformations_getDescription',
|
|
'PhpMyAdmin\Transformations::getDescription'
|
|
),
|
|
new TwigFunction(
|
|
'Transformations_getName',
|
|
'PhpMyAdmin\Transformations::getName'
|
|
),
|
|
);
|
|
}
|
|
}
|