| 1 | <?php |
||
| 12 | class LinkService |
||
| 13 | { |
||
| 14 | private static $instance; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * LinkService constructor. |
||
| 18 | */ |
||
| 19 | protected function __construct() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return LinkService |
||
| 25 | */ |
||
| 26 | public static function getInstance() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Get the (language aware) link to a relative path |
||
| 36 | * |
||
| 37 | * @param $relativePath |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | public static function get($relativePath) |
||
| 53 | } |