1 | <?php |
||
16 | class Localization |
||
17 | { |
||
18 | /** |
||
19 | * Take care that the label exists. |
||
20 | * |
||
21 | * @param string $key key in the localization file |
||
22 | * @param string $extensionName |
||
23 | * @param string $default default value of the label |
||
24 | * @param array $arguments arguments are being passed over to vsprintf |
||
25 | * @param string $tableName The tablename of the given table (null, in non table context) |
||
26 | */ |
||
27 | public function assureLabel($key, $extensionName, &$default, $arguments, $tableName) |
||
38 | |||
39 | /** |
||
40 | * Check if table name file base is used |
||
41 | * |
||
42 | * @return bool |
||
43 | */ |
||
44 | protected function useTableNameFileBase() |
||
49 | } |
||
50 |