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