@@ -109,7 +109,7 @@ |
||
109 | 109 | } |
110 | 110 | |
111 | 111 | /** |
112 | - * @return TControl|null control to be validated. Null if no control is found. |
|
112 | + * @return \Prado\Web\UI\TControl|null control to be validated. Null if no control is found. |
|
113 | 113 | */ |
114 | 114 | public function getValidationTarget() |
115 | 115 | { |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | } |
287 | 287 | |
288 | 288 | /** |
289 | - * @param ITemplate $value the template for repeater items |
|
289 | + * @param \Prado\Web\UI\TTemplate $value the template for repeater items |
|
290 | 290 | * @throws TInvalidDataTypeException if the input is not an {@link ITemplate} or not null. |
291 | 291 | */ |
292 | 292 | public function setItemTemplate($value) |
@@ -463,7 +463,7 @@ discard block |
||
463 | 463 | * This method invokes {@link createItem} to create a new repeater item. |
464 | 464 | * @param int $itemIndex zero-based item index. |
465 | 465 | * @param TListItemType $itemType item type |
466 | - * @return TControl the created item, null if item is not created |
|
466 | + * @return \Prado\TComponent|null the created item, null if item is not created |
|
467 | 467 | */ |
468 | 468 | private function createItemInternal($itemIndex, $itemType) |
469 | 469 | { |
@@ -483,7 +483,7 @@ discard block |
||
483 | 483 | * @param int $itemIndex zero-based item index. |
484 | 484 | * @param TListItemType $itemType item type |
485 | 485 | * @param mixed $dataItem data to be associated with the item |
486 | - * @return TControl the created item, null if item is not created |
|
486 | + * @return \Prado\TComponent|null the created item, null if item is not created |
|
487 | 487 | */ |
488 | 488 | private function createItemWithDataInternal($itemIndex, $itemType, $dataItem) |
489 | 489 | { |
@@ -506,7 +506,7 @@ discard block |
||
506 | 506 | * Creates a repeater item instance based on the item type and index. |
507 | 507 | * @param int $itemIndex zero-based item index |
508 | 508 | * @param TListItemType $itemType item type |
509 | - * @return TControl created repeater item |
|
509 | + * @return null|\Prado\TComponent created repeater item |
|
510 | 510 | */ |
511 | 511 | protected function createItem($itemIndex, $itemType) |
512 | 512 | { |
@@ -78,15 +78,15 @@ |
||
78 | 78 | $data['file'] = $this->hidePrivatePathParts($exception->getFile()); |
79 | 79 | $data['line'] = $exception->getLine(); |
80 | 80 | $data['trace'] = $exception->getTrace(); |
81 | - foreach($data['trace'] as $k => $v) |
|
81 | + foreach ($data['trace'] as $k => $v) |
|
82 | 82 | { |
83 | - if(isset($v['file'])) |
|
83 | + if (isset($v['file'])) |
|
84 | 84 | $data['trace'][$k]['file'] = $this->hidePrivatePathParts($v['file']); |
85 | 85 | |
86 | - if(isset($v['args'])) |
|
86 | + if (isset($v['args'])) |
|
87 | 87 | { |
88 | 88 | $argsout = []; |
89 | - foreach($v['args'] as $kArg => $vArg) |
|
89 | + foreach ($v['args'] as $kArg => $vArg) |
|
90 | 90 | { |
91 | 91 | $data['trace'][$k]['args'][$kArg] = TVarDumper::dump($vArg, 0, false); |
92 | 92 | } |
@@ -41,7 +41,7 @@ |
||
41 | 41 | $first = $logs[0][3]; |
42 | 42 | $even = true; |
43 | 43 | |
44 | - $blocks = [ [ 'info', 'Tot Time', 'Time ', '[Level] [Category] [Message]' ] ]; |
|
44 | + $blocks = [['info', 'Tot Time', 'Time ', '[Level] [Category] [Message]']]; |
|
45 | 45 | for ($i = 0, $n = count($logs); $i < $n; ++$i) { |
46 | 46 | if ($i < $n - 1) { |
47 | 47 | $timing['delta'] = $logs[$i + 1][3] - $logs[$i][3]; |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | console.log ("[Tot Time] [Time ] [Level] [Category] [Message]"); |
85 | 85 | |
86 | -EOD; |
|
86 | +eod; |
|
87 | 87 | |
88 | 88 | return $string; |
89 | 89 | } |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | } |
123 | 123 | </script> |
124 | 124 | |
125 | -EOD; |
|
125 | +eod; |
|
126 | 126 | |
127 | 127 | return $string; |
128 | 128 | } |
@@ -483,7 +483,7 @@ discard block |
||
483 | 483 | * Loads date from drop down list data. |
484 | 484 | * @param string $key the key that can be used to retrieve data from the input data collection |
485 | 485 | * @param array $values the input data collection |
486 | - * @return array the date selected |
|
486 | + * @return string the date selected |
|
487 | 487 | */ |
488 | 488 | protected function getDateFromPostData($key, $values) |
489 | 489 | { |
@@ -647,7 +647,7 @@ discard block |
||
647 | 647 | /** |
648 | 648 | * Renders the calendar drop down list depending on the DateFormat pattern. |
649 | 649 | * @param THtmlWriter $writer the Html writer to render the drop down lists. |
650 | - * @param array $date the current selected date |
|
650 | + * @param \DateTime $date the current selected date |
|
651 | 651 | */ |
652 | 652 | protected function renderCalendarSelections($writer, $date) |
653 | 653 | { |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | |
239 | 239 | /** |
240 | 240 | * Load the ICU culture data for the specific culture identifier. |
241 | - * @param string $culture the culture identifier. |
|
241 | + * @param string $cultureName the culture identifier. |
|
242 | 242 | */ |
243 | 243 | protected function loadCultureData($cultureName) |
244 | 244 | { |
@@ -282,6 +282,7 @@ discard block |
||
282 | 282 | * currency for "en_AU", you need to use findInfo("Currencies,true);. |
283 | 283 | * @param string $path the data you want to find. |
284 | 284 | * @param bool $merge merge the data from its parents. |
285 | + * @param string $key |
|
285 | 286 | * @return mixed the specific ICU data. |
286 | 287 | */ |
287 | 288 | public function findInfo($path='/', $merge=false, $key = null) |
@@ -487,7 +488,6 @@ discard block |
||
487 | 488 | * Simplify a single element array into its own value. |
488 | 489 | * E.g. <code>array(0 => array('hello'), 1 => 'world');</code> |
489 | 490 | * becomes <code>array(0 => 'hello', 1 => 'world');</code> |
490 | - * @param array $array with single elements arrays |
|
491 | 491 | * @return array simplified array. |
492 | 492 | */ |
493 | 493 | protected function simplify($obj) |
@@ -559,7 +559,7 @@ discard block |
||
559 | 559 | |
560 | 560 | /** |
561 | 561 | * Get a list of timezones in the language of the localized version. |
562 | - * @return array list of localized timezones. |
|
562 | + * @return string[] list of localized timezones. |
|
563 | 563 | */ |
564 | 564 | public function getTimeZones() |
565 | 565 | { |
@@ -227,24 +227,24 @@ discard block |
||
227 | 227 | $current_part = $culture_parts[0]; |
228 | 228 | |
229 | 229 | $culturesToLoad = [$current_part]; |
230 | - for($i = 1, $k = count($culture_parts); $i < $k; ++$i) |
|
230 | + for ($i = 1, $k = count($culture_parts); $i < $k; ++$i) |
|
231 | 231 | { |
232 | - $current_part .= '_'.$culture_parts[$i]; |
|
232 | + $current_part .= '_' . $culture_parts[$i]; |
|
233 | 233 | $culturesToLoad[] = $current_part; |
234 | 234 | } |
235 | 235 | |
236 | - foreach(self::$bundleNames as $key => $bundleName) |
|
236 | + foreach (self::$bundleNames as $key => $bundleName) |
|
237 | 237 | { |
238 | - if(!array_key_exists($key, $this->data)) |
|
238 | + if (!array_key_exists($key, $this->data)) |
|
239 | 239 | $this->data[$key] = []; |
240 | 240 | } |
241 | - foreach($culturesToLoad as $culture) |
|
241 | + foreach ($culturesToLoad as $culture) |
|
242 | 242 | { |
243 | - if(in_array($culture, $this->resourceBundles)) |
|
243 | + if (in_array($culture, $this->resourceBundles)) |
|
244 | 244 | continue; |
245 | 245 | |
246 | 246 | array_unshift($this->resourceBundles, $culture); |
247 | - foreach(self::$bundleNames as $key => $bundleName) |
|
247 | + foreach (self::$bundleNames as $key => $bundleName) |
|
248 | 248 | { |
249 | 249 | $this->data[$key][$culture] = \ResourceBundle::create($culture, $bundleName, false); |
250 | 250 | } |
@@ -265,17 +265,17 @@ discard block |
||
265 | 265 | * @param bool $merge merge the data from its parents. |
266 | 266 | * @return mixed the specific ICU data. |
267 | 267 | */ |
268 | - public function findInfo($path='/', $merge=false, $key = null) |
|
268 | + public function findInfo($path = '/', $merge = false, $key = null) |
|
269 | 269 | { |
270 | 270 | $result = []; |
271 | 271 | |
272 | - if($key === null) |
|
272 | + if ($key === null) |
|
273 | 273 | { |
274 | 274 | // try to guess the bundle from the path. Always defaults to "Core". |
275 | 275 | $key = 'Core'; |
276 | - foreach(self::$bundleNames as $bundleName => $icuBundleName) |
|
276 | + foreach (self::$bundleNames as $bundleName => $icuBundleName) |
|
277 | 277 | { |
278 | - if(strpos($path, $bundleName) === 0) |
|
278 | + if (strpos($path, $bundleName) === 0) |
|
279 | 279 | { |
280 | 280 | $key = $bundleName; |
281 | 281 | break; |
@@ -283,17 +283,17 @@ discard block |
||
283 | 283 | } |
284 | 284 | } |
285 | 285 | |
286 | - if(!array_key_exists($key, $this->data)) |
|
286 | + if (!array_key_exists($key, $this->data)) |
|
287 | 287 | return $result; |
288 | - foreach($this->resourceBundles as $culture) |
|
288 | + foreach ($this->resourceBundles as $culture) |
|
289 | 289 | { |
290 | 290 | $res = $this->data[$key][$culture]; |
291 | - if($res === null) |
|
291 | + if ($res === null) |
|
292 | 292 | continue; |
293 | 293 | $info = $this->searchResources($res, $path); |
294 | - if($info) |
|
294 | + if ($info) |
|
295 | 295 | { |
296 | - if($merge) |
|
296 | + if ($merge) |
|
297 | 297 | $result = array_merge($result, $info); |
298 | 298 | else |
299 | 299 | return $info; |
@@ -311,16 +311,16 @@ discard block |
||
311 | 311 | * @param string $path slash "/" separated array path. |
312 | 312 | * @return mixed the value array using the path |
313 | 313 | */ |
314 | - private function searchResources($info, $path='/') |
|
314 | + private function searchResources($info, $path = '/') |
|
315 | 315 | { |
316 | 316 | $index = explode('/', $path); |
317 | 317 | |
318 | 318 | $resource = $info; |
319 | - for($i = 0, $k = count($index); $i < $k; ++$i) |
|
319 | + for ($i = 0, $k = count($index); $i < $k; ++$i) |
|
320 | 320 | { |
321 | 321 | |
322 | 322 | $resource = $resource->get($index[$i], false); |
323 | - if($resource === null) |
|
323 | + if ($resource === null) |
|
324 | 324 | return null; |
325 | 325 | } |
326 | 326 | |
@@ -358,8 +358,8 @@ discard block |
||
358 | 358 | $reg = substr($this->culture, 3, 2); |
359 | 359 | $language = $this->findInfo("Languages/{$lang}"); |
360 | 360 | $region = $this->findInfo("Countries/{$reg}"); |
361 | - if($region) |
|
362 | - return $language.' ('.$region.')'; |
|
361 | + if ($region) |
|
362 | + return $language . ' (' . $region . ')'; |
|
363 | 363 | else |
364 | 364 | return $language; |
365 | 365 | } |
@@ -382,8 +382,8 @@ discard block |
||
382 | 382 | } |
383 | 383 | |
384 | 384 | $region = $culture->findInfo("Countries/{$reg}"); |
385 | - if($region) |
|
386 | - return $language.' ('.$region.')'; |
|
385 | + if ($region) |
|
386 | + return $language . ' (' . $region . ')'; |
|
387 | 387 | else |
388 | 388 | return $language; |
389 | 389 | } |
@@ -439,25 +439,25 @@ discard block |
||
439 | 439 | * or CultureInfo::SPECIFIC. |
440 | 440 | * @return array list of culture information available. |
441 | 441 | */ |
442 | - public static function getCultures($type=CultureInfo::ALL) |
|
442 | + public static function getCultures($type = CultureInfo::ALL) |
|
443 | 443 | { |
444 | 444 | $all = \ResourceBundle::getLocales(''); |
445 | 445 | |
446 | - switch($type) |
|
446 | + switch ($type) |
|
447 | 447 | { |
448 | 448 | case CultureInfo::ALL : |
449 | 449 | return $all; |
450 | 450 | case CultureInfo::NEUTRAL : |
451 | - foreach($all as $key => $culture) |
|
451 | + foreach ($all as $key => $culture) |
|
452 | 452 | { |
453 | - if(strlen($culture) != 2) |
|
453 | + if (strlen($culture) != 2) |
|
454 | 454 | unset($all[$key]); |
455 | 455 | } |
456 | 456 | return $all; |
457 | 457 | case CultureInfo::SPECIFIC : |
458 | - foreach($all as $key => $culture) |
|
458 | + foreach ($all as $key => $culture) |
|
459 | 459 | { |
460 | - if(strlen($culture) == 2) |
|
460 | + if (strlen($culture) == 2) |
|
461 | 461 | unset($all[$key]); |
462 | 462 | } |
463 | 463 | return $all; |
@@ -473,17 +473,17 @@ discard block |
||
473 | 473 | */ |
474 | 474 | protected function simplify($obj) |
475 | 475 | { |
476 | - if(is_scalar($obj)) { |
|
476 | + if (is_scalar($obj)) { |
|
477 | 477 | return $obj; |
478 | - } elseif($obj instanceof \ResourceBundle) { |
|
478 | + } elseif ($obj instanceof \ResourceBundle) { |
|
479 | 479 | $array = array(); |
480 | - foreach($obj as $k => $v) |
|
480 | + foreach ($obj as $k => $v) |
|
481 | 481 | $array[$k] = $v; |
482 | 482 | } else { |
483 | 483 | $array = $obj; |
484 | 484 | } |
485 | 485 | |
486 | - for($i = 0, $k = count($array); $i<$k; ++$i) |
|
486 | + for ($i = 0, $k = count($array); $i < $k; ++$i) |
|
487 | 487 | { |
488 | 488 | $key = key($array); |
489 | 489 | if ($key !== null |
@@ -512,10 +512,10 @@ discard block |
||
512 | 512 | public function getCurrencies() |
513 | 513 | { |
514 | 514 | static $arr; |
515 | - if($arr === null) |
|
515 | + if ($arr === null) |
|
516 | 516 | { |
517 | 517 | $arr = $this->findInfo('Currencies', false, 'Currencies'); |
518 | - foreach($arr as $k => $v) |
|
518 | + foreach ($arr as $k => $v) |
|
519 | 519 | $arr[$k] = $this->simplify($v); |
520 | 520 | } |
521 | 521 | return $arr; |
@@ -546,15 +546,15 @@ discard block |
||
546 | 546 | public function getTimeZones() |
547 | 547 | { |
548 | 548 | static $arr; |
549 | - if($arr === null) |
|
549 | + if ($arr === null) |
|
550 | 550 | { |
551 | 551 | $validPrefixes = array('Africa', 'America', 'Antarctica', 'Arctic', 'Asia', 'Atlantic', 'Australia', 'Etc', 'Europe', 'Indian', 'Pacific'); |
552 | 552 | $tmp = $this->findInfo('zoneStrings', false, 'zoneStrings'); |
553 | - foreach($tmp as $k => $v) |
|
553 | + foreach ($tmp as $k => $v) |
|
554 | 554 | { |
555 | - foreach($validPrefixes as $prefix) |
|
555 | + foreach ($validPrefixes as $prefix) |
|
556 | 556 | { |
557 | - if(strpos($k, $prefix) === 0) |
|
557 | + if (strpos($k, $prefix) === 0) |
|
558 | 558 | { |
559 | 559 | $arr[] = str_replace(':', '/', $k); |
560 | 560 | break; |
@@ -477,8 +477,9 @@ discard block |
||
477 | 477 | return $obj; |
478 | 478 | } elseif($obj instanceof \ResourceBundle) { |
479 | 479 | $array = array(); |
480 | - foreach($obj as $k => $v) |
|
481 | - $array[$k] = $v; |
|
480 | + foreach($obj as $k => $v) { |
|
481 | + $array[$k] = $v; |
|
482 | + } |
|
482 | 483 | } else { |
483 | 484 | $array = $obj; |
484 | 485 | } |
@@ -515,8 +516,9 @@ discard block |
||
515 | 516 | if($arr === null) |
516 | 517 | { |
517 | 518 | $arr = $this->findInfo('Currencies', false, 'Currencies'); |
518 | - foreach($arr as $k => $v) |
|
519 | - $arr[$k] = $this->simplify($v); |
|
519 | + foreach($arr as $k => $v) { |
|
520 | + $arr[$k] = $this->simplify($v); |
|
521 | + } |
|
520 | 522 | } |
521 | 523 | return $arr; |
522 | 524 | } |
@@ -190,11 +190,11 @@ discard block |
||
190 | 190 | */ |
191 | 191 | protected function getFormatter($culture, $datetype, $timetype) |
192 | 192 | { |
193 | - if(!isset(self::$formatters[$culture])) |
|
193 | + if (!isset(self::$formatters[$culture])) |
|
194 | 194 | self::$formatters[$culture] = []; |
195 | - if(!isset(self::$formatters[$culture][$datetype])) |
|
195 | + if (!isset(self::$formatters[$culture][$datetype])) |
|
196 | 196 | self::$formatters[$culture][$datetype] = []; |
197 | - if(!isset(self::$formatters[$culture][$datetype][$timetype])) |
|
197 | + if (!isset(self::$formatters[$culture][$datetype][$timetype])) |
|
198 | 198 | self::$formatters[$culture][$datetype][$timetype] = new \IntlDateFormatter($culture, $datetype, $timetype); |
199 | 199 | |
200 | 200 | return self::$formatters[$culture][$datetype][$timetype]; |
@@ -230,14 +230,14 @@ discard block |
||
230 | 230 | $timetype = \IntlDateFormatter::LONG; |
231 | 231 | |
232 | 232 | // try the "date time" pattern format |
233 | - if(!empty($pattern)) |
|
233 | + if (!empty($pattern)) |
|
234 | 234 | { |
235 | 235 | $subs = explode(' ', $pattern, 2); |
236 | 236 | if (count($subs) == 2) { |
237 | 237 | $sub0 = $this->getPreset($subs[0]); |
238 | 238 | $sub1 = $this->getPreset($subs[1]); |
239 | 239 | |
240 | - if($sub0 !== null && $sub1 !== null) |
|
240 | + if ($sub0 !== null && $sub1 !== null) |
|
241 | 241 | { |
242 | 242 | $datetype = $sub0; |
243 | 243 | $timetype = $sub1; |
@@ -247,10 +247,10 @@ discard block |
||
247 | 247 | } |
248 | 248 | |
249 | 249 | // try the "date" pattern format |
250 | - if(!empty($pattern)) |
|
250 | + if (!empty($pattern)) |
|
251 | 251 | { |
252 | 252 | $sub = $this->getPreset($pattern); |
253 | - if($sub !== null) |
|
253 | + if ($sub !== null) |
|
254 | 254 | { |
255 | 255 | $datetype = $sub; |
256 | 256 | $timetype = $sub; |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | } |
259 | 259 | } |
260 | 260 | |
261 | - if(empty($pattern)) |
|
261 | + if (empty($pattern)) |
|
262 | 262 | { |
263 | 263 | $formatter = $this->getFormatter($culture, $datetype, $timetype); |
264 | 264 | } else { |
@@ -79,7 +79,7 @@ |
||
79 | 79 | protected function getIsValidLocale($locale) |
80 | 80 | { |
81 | 81 | static $allLocales; |
82 | - if($allLocales === null) |
|
82 | + if ($allLocales === null) |
|
83 | 83 | { |
84 | 84 | $all = \ResourceBundle::getLocales(''); |
85 | 85 | } |
@@ -195,9 +195,9 @@ discard block |
||
195 | 195 | */ |
196 | 196 | protected function getFormatter($culture, $type) |
197 | 197 | { |
198 | - if(!isset(self::$formatters[$culture])) |
|
198 | + if (!isset(self::$formatters[$culture])) |
|
199 | 199 | self::$formatters[$culture] = []; |
200 | - if(!isset(self::$formatters[$culture][$type])) |
|
200 | + if (!isset(self::$formatters[$culture][$type])) |
|
201 | 201 | self::$formatters[$culture][$type] = new \NumberFormatter($culture, $type); |
202 | 202 | |
203 | 203 | return self::$formatters[$culture][$type]; |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | $type = $this->getType(); |
222 | 222 | $pattern = $this->getPattern(); |
223 | 223 | |
224 | - if(empty($pattern)) |
|
224 | + if (empty($pattern)) |
|
225 | 225 | { |
226 | 226 | $formatter = $this->getFormatter($culture, $type); |
227 | 227 | } else { |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | $formatter->setPattern($pattern); |
230 | 230 | } |
231 | 231 | |
232 | - if($type === \NumberFormatter::CURRENCY) |
|
232 | + if ($type === \NumberFormatter::CURRENCY) |
|
233 | 233 | { |
234 | 234 | $result = $formatter->formatCurrency($value, $this->getCurrency()); |
235 | 235 | } else { |