1 | <?php |
||
7 | class BaseUrlFunction |
||
8 | { |
||
9 | 13 | public function __invoke (Twig_Environment $env, $assetPath) |
|
22 | |||
23 | public static function get () |
||
24 | { |
||
25 | return new \Twig_SimpleFunction('url', new self(), array( |
||
26 | 'needs_environment' => true |
||
27 | )); |
||
28 | } |
||
29 | |||
30 | 13 | private function guessAssetPath ($assetPath) |
|
43 | |||
44 | 13 | private function trimSlashes ($url) |
|
55 | } |