Related to https://github.com/phpmyadmin/phpmyadmin/pull/17427. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
34 lines
703 B
PHP
34 lines
703 B
PHP
<?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
|
|
{
|
|
$GLOBALS['theme'] = $GLOBALS['theme'] ?? null;
|
|
|
|
if (! $GLOBALS['theme'] instanceof Theme) {
|
|
return '';
|
|
}
|
|
|
|
return $GLOBALS['theme']->getImgPath($filename, $fallback);
|
|
}
|
|
}
|