003 File Manager
Current Path:
/usr/local/www/sites/shared/phpmyadmin/vendor/twig/twig/src/Extension
usr
/
local
/
www
/
sites
/
shared
/
phpmyadmin
/
vendor
/
twig
/
twig
/
src
/
Extension
/
📁
..
📄
AbstractExtension.php
(1.31 KB)
📄
CoreExtension.php
(53.46 KB)
📄
DebugExtension.php
(1.93 KB)
📄
EscaperExtension.php
(2.96 KB)
📄
ExtensionInterface.php
(2.56 KB)
📄
GlobalsInterface.php
(626 B)
📄
InitRuntimeInterface.php
(640 B)
📄
OptimizerExtension.php
(740 B)
📄
ProfilerExtension.php
(1.09 KB)
📄
RuntimeExtensionInterface.php
(326 B)
📄
SandboxExtension.php
(2.33 KB)
📄
StagingExtension.php
(2.94 KB)
📄
StringLoaderExtension.php
(1.17 KB)
Editing: AbstractExtension.php
<?php /* * This file is part of Twig. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Twig\Extension; use Twig\Environment; abstract class AbstractExtension implements ExtensionInterface { /** * @deprecated since 1.23 (to be removed in 2.0), implement \Twig_Extension_InitRuntimeInterface instead */ public function initRuntime(Environment $environment) { } public function getTokenParsers() { return []; } public function getNodeVisitors() { return []; } public function getFilters() { return []; } public function getTests() { return []; } public function getFunctions() { return []; } public function getOperators() { return []; } /** * @deprecated since 1.23 (to be removed in 2.0), implement \Twig_Extension_GlobalsInterface instead */ public function getGlobals() { return []; } /** * @deprecated since 1.26 (to be removed in 2.0), not used anymore internally */ public function getName() { return \get_class($this); } } class_alias('Twig\Extension\AbstractExtension', 'Twig_Extension');
Upload File
Create Folder