Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
phpMyAdmin /
libraries /
classes /
Twig /
Delete
Unzip
Name
Size
Permission
Date
Action
AssetExtension.php
649
B
-rw-rw-rw-
2023-02-07 22:26
CoreExtension.php
486
B
-rw-rw-rw-
2023-02-07 22:26
FlashMessagesExtension.php
389
B
-rw-rw-rw-
2023-02-07 22:26
I18nExtension.php
673
B
-rw-rw-rw-
2023-02-07 22:26
MessageExtension.php
1.1
KB
-rw-rw-rw-
2023-02-07 22:26
RelationExtension.php
1.17
KB
-rw-rw-rw-
2023-02-07 22:26
SanitizeExtension.php
1.23
KB
-rw-rw-rw-
2023-02-07 22:26
TableExtension.php
500
B
-rw-rw-rw-
2023-02-07 22:26
TrackerExtension.php
523
B
-rw-rw-rw-
2023-02-07 22:26
TransformationsExtension.php
711
B
-rw-rw-rw-
2023-02-07 22:26
UrlExtension.php
1.17
KB
-rw-rw-rw-
2023-02-07 22:26
UtilExtension.php
5.1
KB
-rw-rw-rw-
2023-02-07 22:26
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); } }