Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.223.33.204
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
libraries /
classes /
Twig /
Delete
Unzip
Name
Size
Permission
Date
Action
I18n
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
CoreExtension.php
833
B
-rw-r--r--
2021-02-05 18:27
I18nExtension.php
931
B
-rw-r--r--
2021-02-05 18:27
MessageExtension.php
1.27
KB
-rw-r--r--
2021-02-05 18:27
PluginsExtension.php
1.21
KB
-rw-r--r--
2021-02-05 18:27
RelationExtension.php
1.63
KB
-rw-r--r--
2021-02-05 18:27
SanitizeExtension.php
1.41
KB
-rw-r--r--
2021-02-05 18:27
ServerPrivilegesExtension.php
1.16
KB
-rw-r--r--
2021-02-05 18:27
StorageEngineExtension.php
757
B
-rw-r--r--
2021-02-05 18:27
TableExtension.php
668
B
-rw-r--r--
2021-02-05 18:27
TrackerExtension.php
693
B
-rw-r--r--
2021-02-05 18:27
TransformationsExtension.php
1.01
KB
-rw-r--r--
2021-02-05 18:27
UrlExtension.php
1.19
KB
-rw-r--r--
2021-02-05 18:27
UtilExtension.php
6.4
KB
-rw-r--r--
2021-02-05 18:27
Save
Rename
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * hold PhpMyAdmin\Twig\ServerPrivilegesExtension class * * @package PhpMyAdmin\Twig */ declare(strict_types=1); namespace PhpMyAdmin\Twig; use PhpMyAdmin\Relation; use PhpMyAdmin\RelationCleanup; use PhpMyAdmin\Server\Privileges; use PhpMyAdmin\Template; use Twig\Extension\AbstractExtension; use Twig\TwigFunction; /** * Class ServerPrivilegesExtension * * @package PhpMyAdmin\Twig */ class ServerPrivilegesExtension extends AbstractExtension { /** * Returns a list of functions to add to the existing list. * * @return TwigFunction[] */ public function getFunctions() { $relation = new Relation($GLOBALS['dbi']); $serverPrivileges = new Privileges( new Template(), $GLOBALS['dbi'], $relation, new RelationCleanup($GLOBALS['dbi'], $relation) ); return [ new TwigFunction( 'format_privilege', [ $serverPrivileges, 'formatPrivilege', ], ['is_safe' => ['html']] ), ]; } }