1 | <?php |
||
9 | class LocaleLink implements ExtensionInterface |
||
10 | { |
||
11 | /** |
||
12 | * @param Engine $engine |
||
13 | */ |
||
14 | public function register(Engine $engine) |
||
15 | { |
||
16 | $engine->registerFunction('l', [$this, 'locale']); |
||
17 | $engine->registerFunction('locale', [$this, 'locale']); |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @return string |
||
22 | */ |
||
23 | 1 | public function locale() : string |
|
27 | } |
||
28 |