One Hat Cyber Team
Your IP :
3.145.68.158
Server IP :
104.21.112.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
db.gftag.com
/
libraries
/
classes
/
Twig
/
View File Name :
UrlExtension.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Twig; use PhpMyAdmin\Url; use Twig\Extension\AbstractExtension; use Twig\TwigFunction; class UrlExtension extends AbstractExtension { /** * Returns a list of functions to add to the existing list. * * @return TwigFunction[] */ public function getFunctions() { return [ new TwigFunction( 'get_hidden_inputs', [Url::class, 'getHiddenInputs'], ['is_safe' => ['html']] ), new TwigFunction( 'get_hidden_fields', [Url::class, 'getHiddenFields'], ['is_safe' => ['html']] ), new TwigFunction( 'get_common', [Url::class, 'getCommon'], ['is_safe' => ['html']] ), new TwigFunction( 'get_common_raw', [Url::class, 'getCommonRaw'], ['is_safe' => ['html']] ), new TwigFunction( 'url', [Url::class, 'getFromRoute'], ['is_safe' => ['html']] ), ]; } }