|
|
@@ -99,6 +99,7 @@ class TwigExtension extends AbstractExtension |
|
|
|
new TwigFunction('ea_url_short', [$this, 'generateEaUrl']), |
|
|
|
new TwigFunction('is_instance_of', [$this, 'isInstanceOf']), |
|
|
|
new TwigFunction('logo_admin', [$this, 'getLogoAdmin']), |
|
|
|
new TwigFunction('asset_url', [$this, 'getAssetUrl']), |
|
|
|
]; |
|
|
|
} |
|
|
|
|
|
|
@@ -119,6 +120,15 @@ class TwigExtension extends AbstractExtension |
|
|
|
]; |
|
|
|
} |
|
|
|
|
|
|
|
public function getAssetUrl($path) |
|
|
|
{ |
|
|
|
$context = $this->router->getContext(); |
|
|
|
$host = $context->getScheme().'://'.$context->getHost().'/'; |
|
|
|
|
|
|
|
return $host.$path; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public function rot13(string $string): string |
|
|
|
{ |
|
|
|
return str_rot13($string); |