@@ -40,7 +40,7 @@ |
||
40 | 40 | public function getFloat() |
41 | 41 | { |
42 | 42 | if ($this->decimals) { |
43 | - return ($this->number . '.' . $this->decimals) * 1; |
|
43 | + return ($this->number.'.'.$this->decimals) * 1; |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | return $this->number; |
@@ -94,13 +94,13 @@ discard block |
||
94 | 94 | */ |
95 | 95 | protected function parseFile($file) |
96 | 96 | { |
97 | - $this->log(sprintf('Parsing file [' . $file . '].')); |
|
97 | + $this->log(sprintf('Parsing file ['.$file.'].')); |
|
98 | 98 | |
99 | 99 | $language = $this->parser->parseFile($file); |
100 | 100 | |
101 | 101 | $texts = $language->getTexts(); |
102 | 102 | |
103 | - foreach($texts as $def) |
|
103 | + foreach ($texts as $def) |
|
104 | 104 | { |
105 | 105 | $this->collection->addFromFile( |
106 | 106 | $this->getID(), |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | |
114 | 114 | $warnings = $language->getWarnings(); |
115 | 115 | |
116 | - foreach($warnings as $warning) { |
|
116 | + foreach ($warnings as $warning) { |
|
117 | 117 | $this->collection->addWarning($warning); |
118 | 118 | } |
119 | 119 | } |
@@ -140,9 +140,9 @@ discard block |
||
140 | 140 | $amount = 0; |
141 | 141 | |
142 | 142 | $hashes = $this->getHashes($scanner); |
143 | - foreach($hashes as $hash) { |
|
143 | + foreach ($hashes as $hash) { |
|
144 | 144 | $text = $translator->getHashTranslation($hash->getHash()); |
145 | - if(empty($text)) { |
|
145 | + if (empty($text)) { |
|
146 | 146 | $amount++; |
147 | 147 | } |
148 | 148 | } |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | return self::$instances[$id]; |
53 | 53 | } |
54 | 54 | |
55 | - $className = '\AppLocalize\Localization_Currency_' . $id; |
|
55 | + $className = '\AppLocalize\Localization_Currency_'.$id; |
|
56 | 56 | |
57 | 57 | return new $className($country); |
58 | 58 | } |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public static function isCurrencyKnown($currencyName) |
94 | 94 | { |
95 | - return file_exists(APP_ROOT . '/assets/classes/Localization/Currency/' . $currencyName . '.php'); |
|
95 | + return file_exists(APP_ROOT.'/assets/classes/Localization/Currency/'.$currencyName.'.php'); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | return $this->country->getNumberDecimalsSeparator(); |
266 | 266 | } |
267 | 267 | |
268 | - public function makeReadable($number, $decimalPositions = 2, $addSymbol=true) |
|
268 | + public function makeReadable($number, $decimalPositions = 2, $addSymbol = true) |
|
269 | 269 | { |
270 | 270 | if ($number == null || $number == '') { |
271 | 271 | return null; |
@@ -284,14 +284,14 @@ discard block |
||
284 | 284 | |
285 | 285 | $number = $this->formatNumber($parsed->getFloat(), $decimalPositions); |
286 | 286 | |
287 | - if(!$addSymbol) { |
|
287 | + if (!$addSymbol) { |
|
288 | 288 | return $number; |
289 | 289 | } |
290 | 290 | |
291 | 291 | if ($this->isSymbolOnFront()) { |
292 | - return $this->getSymbol() . ' ' . $number; |
|
292 | + return $this->getSymbol().' '.$number; |
|
293 | 293 | } |
294 | 294 | |
295 | - return $number . ' ' . $this->getSymbol(); |
|
295 | + return $number.' '.$this->getSymbol(); |
|
296 | 296 | } |
297 | 297 | } |
298 | 298 | \ No newline at end of file |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | public function excludeFolder(string $folder) : Localization_Source_Folder |
51 | 51 | { |
52 | - if(!in_array($folder, $this->excludes['folders'])) { |
|
52 | + if (!in_array($folder, $this->excludes['folders'])) { |
|
53 | 53 | $this->excludes['folders'][] = $folder; |
54 | 54 | } |
55 | 55 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | public function excludeFolders(array $folders) : Localization_Source_Folder |
60 | 60 | { |
61 | - foreach($folders as $folder) { |
|
61 | + foreach ($folders as $folder) { |
|
62 | 62 | $this->excludeFolder($folder); |
63 | 63 | } |
64 | 64 |
@@ -39,7 +39,7 @@ |
||
39 | 39 | */ |
40 | 40 | public function getArgument(int $index) |
41 | 41 | { |
42 | - if(isset($this->args[$index])) { |
|
42 | + if (isset($this->args[$index])) { |
|
43 | 43 | return $this->args[$index]; |
44 | 44 | } |
45 | 45 |
@@ -58,13 +58,13 @@ discard block |
||
58 | 58 | protected function initCache() |
59 | 59 | { |
60 | 60 | // ignore it if it does not exist. |
61 | - if(!file_exists($this->cacheKeyFile)) { |
|
61 | + if (!file_exists($this->cacheKeyFile)) { |
|
62 | 62 | return; |
63 | 63 | } |
64 | 64 | |
65 | 65 | $this->cacheKey = file_get_contents($this->cacheKeyFile); |
66 | 66 | |
67 | - if($this->cacheKey !== false) { |
|
67 | + if ($this->cacheKey !== false) { |
|
68 | 68 | return; |
69 | 69 | } |
70 | 70 | |
@@ -77,22 +77,22 @@ discard block |
||
77 | 77 | ); |
78 | 78 | } |
79 | 79 | |
80 | - public function writeFiles(bool $force=false) : void |
|
80 | + public function writeFiles(bool $force = false) : void |
|
81 | 81 | { |
82 | 82 | // reset the write states for all files |
83 | 83 | $fileIDs = array_keys($this->written); |
84 | - foreach($fileIDs as $fileID) { |
|
84 | + foreach ($fileIDs as $fileID) { |
|
85 | 85 | $this->written[$fileID] = false; |
86 | 86 | } |
87 | 87 | |
88 | 88 | // no client libraries folder set: ignore. |
89 | - if(empty($this->targetFolder)) { |
|
89 | + if (empty($this->targetFolder)) { |
|
90 | 90 | return; |
91 | 91 | } |
92 | 92 | |
93 | 93 | \AppUtils\FileHelper::createFolder($this->targetFolder); |
94 | 94 | |
95 | - if(!is_writable($this->targetFolder)) |
|
95 | + if (!is_writable($this->targetFolder)) |
|
96 | 96 | { |
97 | 97 | throw new Localization_Exception( |
98 | 98 | sprintf( |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | ); |
108 | 108 | } |
109 | 109 | |
110 | - if($this->cacheKey !== Localization::getClientLibrariesCacheKey()) { |
|
110 | + if ($this->cacheKey !== Localization::getClientLibrariesCacheKey()) { |
|
111 | 111 | $force = true; |
112 | 112 | } |
113 | 113 | |
@@ -130,16 +130,16 @@ discard block |
||
130 | 130 | { |
131 | 131 | $files = array(); |
132 | 132 | |
133 | - foreach($this->libraries as $fileName) |
|
133 | + foreach ($this->libraries as $fileName) |
|
134 | 134 | { |
135 | 135 | $files[] = $this->getLibraryFilePath($fileName); |
136 | 136 | } |
137 | 137 | |
138 | 138 | $locales = Localization::getAppLocales(); |
139 | 139 | |
140 | - foreach($locales as $locale) |
|
140 | + foreach ($locales as $locale) |
|
141 | 141 | { |
142 | - if($locale->isNative()) { |
|
142 | + if ($locale->isNative()) { |
|
143 | 143 | continue; |
144 | 144 | } |
145 | 145 | |
@@ -153,9 +153,9 @@ discard block |
||
153 | 153 | { |
154 | 154 | $locales = Localization::getAppLocales(); |
155 | 155 | |
156 | - foreach($locales as $locale) |
|
156 | + foreach ($locales as $locale) |
|
157 | 157 | { |
158 | - if($locale->isNative()) { |
|
158 | + if ($locale->isNative()) { |
|
159 | 159 | continue; |
160 | 160 | } |
161 | 161 | |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | { |
173 | 173 | $sourceFolder = realpath(__DIR__.'/../js'); |
174 | 174 | |
175 | - if($sourceFolder === false) |
|
175 | + if ($sourceFolder === false) |
|
176 | 176 | { |
177 | 177 | throw new Localization_Exception( |
178 | 178 | 'Unexpected folder structure encountered.', |
@@ -184,11 +184,11 @@ discard block |
||
184 | 184 | ); |
185 | 185 | } |
186 | 186 | |
187 | - foreach($this->libraries as $fileName) |
|
187 | + foreach ($this->libraries as $fileName) |
|
188 | 188 | { |
189 | 189 | $targetFile = $this->getLibraryFilePath($fileName); |
190 | 190 | |
191 | - if(file_exists($targetFile) && !$this->force) { |
|
191 | + if (file_exists($targetFile) && !$this->force) { |
|
192 | 192 | continue; |
193 | 193 | } |
194 | 194 | |
@@ -235,16 +235,16 @@ discard block |
||
235 | 235 | { |
236 | 236 | $path = $this->getLocaleFilePath($locale); |
237 | 237 | |
238 | - if(file_exists($path) && !$this->force) { |
|
238 | + if (file_exists($path) && !$this->force) { |
|
239 | 239 | return; |
240 | 240 | } |
241 | 241 | |
242 | 242 | $strings = $this->translator->getClientStrings($locale); |
243 | 243 | |
244 | 244 | $tokens = array(); |
245 | - foreach($strings as $hash => $text) |
|
245 | + foreach ($strings as $hash => $text) |
|
246 | 246 | { |
247 | - if(empty($text)) { |
|
247 | + if (empty($text)) { |
|
248 | 248 | continue; |
249 | 249 | } |
250 | 250 | |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | ); |
256 | 256 | } |
257 | 257 | |
258 | - if(empty($tokens)) |
|
258 | + if (empty($tokens)) |
|
259 | 259 | { |
260 | 260 | $content = '/* No strings found. */'; |
261 | 261 | } |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | */ |
281 | 281 | protected function writeCacheKey() |
282 | 282 | { |
283 | - if(file_exists($this->cacheKeyFile) && !$this->force) { |
|
283 | + if (file_exists($this->cacheKeyFile) && !$this->force) { |
|
284 | 284 | return; |
285 | 285 | } |
286 | 286 | |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | */ |
304 | 304 | public function areFilesWritten(string $filesID) |
305 | 305 | { |
306 | - if(isset($this->written[$filesID])) { |
|
306 | + if (isset($this->written[$filesID])) { |
|
307 | 307 | return $this->written[$filesID]; |
308 | 308 | } |
309 | 309 |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function __construct(string $localeName) |
51 | 51 | { |
52 | - if(!self::isLocaleKnown($localeName)) |
|
52 | + if (!self::isLocaleKnown($localeName)) |
|
53 | 53 | { |
54 | 54 | throw new Localization_Exception( |
55 | 55 | 'Invalid locale', |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | */ |
145 | 145 | public function getLabel() : string |
146 | 146 | { |
147 | - switch($this->localeName) |
|
147 | + switch ($this->localeName) |
|
148 | 148 | { |
149 | 149 | case 'de_DE': |
150 | 150 | return t('German'); |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | } |
170 | 170 | |
171 | 171 | throw new Localization_Exception( |
172 | - 'Label is missing for the locale ' . $this->localeName, |
|
172 | + 'Label is missing for the locale '.$this->localeName, |
|
173 | 173 | null, |
174 | 174 | self::ERROR_LOCALE_LABEL_MISSING |
175 | 175 | ); |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | */ |
182 | 182 | public function getCountry() : Localization_Country |
183 | 183 | { |
184 | - if(!isset($this->country)) { |
|
184 | + if (!isset($this->country)) { |
|
185 | 185 | $this->country = Localization::createCountry($this->countryCode); |
186 | 186 | } |
187 | 187 |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | */ |
77 | 77 | public function getID() : string |
78 | 78 | { |
79 | - if(!isset($this->id)) { |
|
79 | + if (!isset($this->id)) { |
|
80 | 80 | $this->id = str_replace('AppLocalize\Localization_Parser_Language_', '', get_class($this)); |
81 | 81 | } |
82 | 82 | |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | */ |
102 | 102 | public function parseFile(string $path) : void |
103 | 103 | { |
104 | - if(!file_exists($path)) |
|
104 | + if (!file_exists($path)) |
|
105 | 105 | { |
106 | 106 | throw new Localization_Exception( |
107 | 107 | sprintf('Source code file [%s] not found', basename($path)), |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | $this->sourceFile = $path; |
117 | 117 | $this->content = file_get_contents($path); |
118 | 118 | |
119 | - if($this->content !== false) { |
|
119 | + if ($this->content !== false) { |
|
120 | 120 | $this->parse(); |
121 | 121 | return; |
122 | 122 | } |
@@ -150,12 +150,12 @@ discard block |
||
150 | 150 | $this->tokens = $this->getTokens(); |
151 | 151 | $this->totalTokens = count($this->tokens); |
152 | 152 | |
153 | - for($i = 0; $i < $this->totalTokens; $i++) |
|
153 | + for ($i = 0; $i < $this->totalTokens; $i++) |
|
154 | 154 | { |
155 | 155 | $token = $this->createToken($this->tokens[$i]); |
156 | 156 | |
157 | - if($token->isTranslationFunction()) { |
|
158 | - $this->parseToken($i+1, $token); |
|
157 | + if ($token->isTranslationFunction()) { |
|
158 | + $this->parseToken($i + 1, $token); |
|
159 | 159 | } |
160 | 160 | } |
161 | 161 | } |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | return $this->texts; |
166 | 166 | } |
167 | 167 | |
168 | - protected function addResult($text, $line=null) |
|
168 | + protected function addResult($text, $line = null) |
|
169 | 169 | { |
170 | 170 | $this->log(sprintf('Line [%1$s] | Found string [%2$s]', $line, $text)); |
171 | 171 | |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | * @param Localization_Parser_Token $parentToken |
235 | 235 | * @return Localization_Parser_Token |
236 | 236 | */ |
237 | - protected function createToken($definition, Localization_Parser_Token $parentToken=null) : Localization_Parser_Token |
|
237 | + protected function createToken($definition, Localization_Parser_Token $parentToken = null) : Localization_Parser_Token |
|
238 | 238 | { |
239 | 239 | $class = '\AppLocalize\Localization_Parser_Token_'.$this->getID(); |
240 | 240 | |
@@ -253,43 +253,43 @@ discard block |
||
253 | 253 | $max = $number + 200; |
254 | 254 | $open = false; |
255 | 255 | |
256 | - for($i = $number; $i < $max; $i++) |
|
256 | + for ($i = $number; $i < $max; $i++) |
|
257 | 257 | { |
258 | - if(!isset($this->tokens[$i])) { |
|
258 | + if (!isset($this->tokens[$i])) { |
|
259 | 259 | break; |
260 | 260 | } |
261 | 261 | |
262 | 262 | $subToken = $this->createToken($this->tokens[$i], $token); |
263 | 263 | |
264 | - if(!$open && $subToken->isOpeningFuncParams()) |
|
264 | + if (!$open && $subToken->isOpeningFuncParams()) |
|
265 | 265 | { |
266 | 266 | $open = true; |
267 | 267 | continue; |
268 | 268 | } |
269 | 269 | |
270 | - if($open && $subToken->isClosingFuncParams()) { |
|
270 | + if ($open && $subToken->isClosingFuncParams()) { |
|
271 | 271 | break; |
272 | 272 | } |
273 | 273 | |
274 | 274 | // additional parameters in the translation function, we don't want to capture these now. |
275 | - if($open && $subToken->isArgumentSeparator()) { |
|
275 | + if ($open && $subToken->isArgumentSeparator()) { |
|
276 | 276 | break; |
277 | 277 | } |
278 | 278 | |
279 | - if($open && $subToken->isEncapsedString()) |
|
279 | + if ($open && $subToken->isEncapsedString()) |
|
280 | 280 | { |
281 | 281 | $textParts[] = $this->trimText($subToken->getValue()); |
282 | 282 | continue; |
283 | 283 | } |
284 | 284 | |
285 | - if($open && $subToken->isVariableOrFunction()) { |
|
285 | + if ($open && $subToken->isVariableOrFunction()) { |
|
286 | 286 | $textParts = null; |
287 | 287 | $this->addWarning($subToken, t('Variables or functions are not supported in translation functions.')); |
288 | 288 | break; |
289 | 289 | } |
290 | 290 | } |
291 | 291 | |
292 | - if(empty($textParts)) { |
|
292 | + if (empty($textParts)) { |
|
293 | 293 | return; |
294 | 294 | } |
295 | 295 | |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | |
301 | 301 | protected function debug($text) |
302 | 302 | { |
303 | - if($this->debug) { |
|
303 | + if ($this->debug) { |
|
304 | 304 | echo $text; |
305 | 305 | } |
306 | 306 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | |
21 | 21 | protected $line = 0; |
22 | 22 | |
23 | - public function __construct($definition, Localization_Parser_Token $parentToken=null) |
|
23 | + public function __construct($definition, Localization_Parser_Token $parentToken = null) |
|
24 | 24 | { |
25 | 25 | $this->definition = $definition; |
26 | 26 | $this->parentToken = $parentToken; |