Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
libraries /
classes /
Twig /
Delete
Unzip
Name
Size
Permission
Date
Action
AssetExtension.php
649
B
-rw-r--r--
2023-02-07 21:35
CoreExtension.php
486
B
-rw-r--r--
2023-02-07 21:35
FlashMessagesExtension.php
389
B
-rw-r--r--
2023-02-07 21:35
I18nExtension.php
673
B
-rw-r--r--
2023-02-07 21:35
MessageExtension.php
1.1
KB
-rw-r--r--
2023-02-07 21:35
RelationExtension.php
1.17
KB
-rw-r--r--
2023-02-07 21:35
SanitizeExtension.php
1.23
KB
-rw-r--r--
2023-02-07 21:35
TableExtension.php
500
B
-rw-r--r--
2023-02-07 21:35
TrackerExtension.php
523
B
-rw-r--r--
2023-02-07 21:35
TransformationsExtension.php
711
B
-rw-r--r--
2023-02-07 21:35
UrlExtension.php
1.17
KB
-rw-r--r--
2023-02-07 21:35
UtilExtension.php
5.1
KB
-rw-r--r--
2023-02-07 21:35
Save
Rename
<?php declare(strict_types=1); namespace PhpMyAdmin\Twig; use PhpMyAdmin\Theme; use Twig\Extension\AbstractExtension; use Twig\TwigFunction; final class AssetExtension extends AbstractExtension { /** * @return TwigFunction[] */ public function getFunctions() { return [ new TwigFunction('image', [$this, 'getImagePath']), ]; } public function getImagePath(?string $filename = null, ?string $fallback = null): string { global $theme; if (! $theme instanceof Theme) { return ''; } return $theme->getImgPath($filename, $fallback); } }