Browse Source

Merge branch 'develop'

develop
Guillaume 2 years ago
parent
commit
7a8f28f72d
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      Twig/TwigExtension.php

+ 10
- 0
Twig/TwigExtension.php View File

@@ -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);

Loading…
Cancel
Save