12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /* vim: set expandtab sw=4 ts=4 sts=4: */
- /**
- * hold PhpMyAdmin\Twig\TableExtension class
- *
- * @package PhpMyAdmin\Twig
- */
- namespace PhpMyAdmin\Twig;
- use Twig\Extension\AbstractExtension;
- use Twig\TwigFunction;
- /**
- * Class TableExtension
- *
- * @package PhpMyAdmin\Twig
- */
- class TableExtension extends AbstractExtension
- {
- /**
- * Returns a list of functions to add to the existing list.
- *
- * @return TwigFunction[]
- */
- public function getFunctions()
- {
- return array(
- new TwigFunction(
- 'Table_get',
- 'PhpMyAdmin\Table::get'
- ),
- );
- }
- }
|