Explorar el Código

Merge branch 'develop'

develop
Guillaume hace 2 años
padre
commit
7a8f28f72d
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. +10
    -0
      Twig/TwigExtension.php

+ 10
- 0
Twig/TwigExtension.php Ver fichero

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

Cargando…
Cancelar
Guardar