@@ -80,7 +80,7 @@ |
||
| 80 | 80 | |
| 81 | 81 | /** |
| 82 | 82 | * Publish the jQuery-ui style Css asset file. |
| 83 | - * @param file name |
|
| 83 | + * @param file string |
|
| 84 | 84 | * @return string Css file url. |
| 85 | 85 | */ |
| 86 | 86 | public function publishJuiStyle($file) |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | * Gets a control instance named after a returned control id. |
| 68 | 68 | * Example: if a $param->draggable control id is returned from clientside, |
| 69 | 69 | * calling $param->DraggableControl will return the control instance |
| 70 | - * @return mixed control or null if not set. |
|
| 70 | + * @return null|TControl control or null if not set. |
|
| 71 | 71 | */ |
| 72 | 72 | public function __get($name) |
| 73 | 73 | { |
@@ -59,7 +59,7 @@ |
||
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | /** |
| 62 | - * @return TComponent container of this component. It serves as the evaluation context of expressions and statements. |
|
| 62 | + * @return \Prado\TComponent container of this component. It serves as the evaluation context of expressions and statements. |
|
| 63 | 63 | */ |
| 64 | 64 | public function getContainer() |
| 65 | 65 | { |
@@ -68,6 +68,7 @@ |
||
| 68 | 68 | |
| 69 | 69 | /** |
| 70 | 70 | * Loads the template from the specified file. |
| 71 | + * @param string $fileName |
|
| 71 | 72 | * @return ITemplate template parsed from the specified file, null if the file doesn't exist. |
| 72 | 73 | */ |
| 73 | 74 | public function getTemplateByFileName($fileName) |
@@ -22,5 +22,9 @@ |
||
| 22 | 22 | { |
| 23 | 23 | public function getView($viewName); |
| 24 | 24 | public function getViewNames(); |
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * @return void |
|
| 28 | + */ |
|
| 25 | 29 | public function onDataSourceChanged($param); |
| 26 | 30 | } |
| 27 | 31 | \ No newline at end of file |
@@ -36,6 +36,7 @@ discard block |
||
| 36 | 36 | * Sets the zero-based index for the item. |
| 37 | 37 | * If the item is not in the item collection (e.g. it is a header item), -1 should be used. |
| 38 | 38 | * @param integer zero-based index of the item. |
| 39 | + * @return void |
|
| 39 | 40 | */ |
| 40 | 41 | public function setItemIndex($value); |
| 41 | 42 | |
@@ -46,6 +47,7 @@ discard block |
||
| 46 | 47 | |
| 47 | 48 | /** |
| 48 | 49 | * @param TListItemType the item type. |
| 50 | + * @return void |
|
| 49 | 51 | */ |
| 50 | 52 | public function setItemType($value); |
| 51 | 53 | } |
| 52 | 54 | \ No newline at end of file |
@@ -32,6 +32,7 @@ |
||
| 32 | 32 | public function getStyle(); |
| 33 | 33 | /** |
| 34 | 34 | * Removes all styles associated with the object |
| 35 | + * @return void |
|
| 35 | 36 | */ |
| 36 | 37 | public function clearStyle(); |
| 37 | 38 | } |
| 38 | 39 | \ No newline at end of file |
@@ -185,6 +185,7 @@ discard block |
||
| 185 | 185 | * TBaseValidator::$_clientClass, be sure to update the corresponding |
| 186 | 186 | * "Javascript/validation3.js" file as well. |
| 187 | 187 | * @param TControl control to validate. |
| 188 | + * @param \Prado\Web\UI\TControl $control |
|
| 188 | 189 | * @return string control type for client-side validation. |
| 189 | 190 | */ |
| 190 | 191 | private function getClientControlClass($control) |
@@ -263,7 +264,7 @@ discard block |
||
| 263 | 264 | /** |
| 264 | 265 | * Update the ControlToValidate component's css class depending |
| 265 | 266 | * if the ControlCssClass property is set, and whether this is valid. |
| 266 | - * @return boolean true if change, false otherwise. |
|
| 267 | + * @return boolean|null true if change, false otherwise. |
|
| 267 | 268 | */ |
| 268 | 269 | protected function updateControlCssClass() |
| 269 | 270 | { |
@@ -388,6 +389,7 @@ discard block |
||
| 388 | 389 | * The ID path is the dot-connected IDs of the controls reaching from |
| 389 | 390 | * the validator's naming container to the target control. |
| 390 | 391 | * @param string the ID path |
| 392 | + * @param string $value |
|
| 391 | 393 | */ |
| 392 | 394 | public function setControlToValidate($value) |
| 393 | 395 | { |
@@ -476,7 +478,7 @@ discard block |
||
| 476 | 478 | } |
| 477 | 479 | |
| 478 | 480 | /** |
| 479 | - * @return TControl control to be validated. Null if no control is found. |
|
| 481 | + * @return \Prado\Web\UI\TControl control to be validated. Null if no control is found. |
|
| 480 | 482 | * @throws TConfigurationException if {@link getControlToValidate |
| 481 | 483 | * ControlToValidate} is empty or does not point to a valid control |
| 482 | 484 | */ |
@@ -553,6 +555,7 @@ discard block |
||
| 553 | 555 | |
| 554 | 556 | /** |
| 555 | 557 | * @param string the css class that is applied to the control being validated in case the validation fails |
| 558 | + * @param string $value |
|
| 556 | 559 | */ |
| 557 | 560 | public function setControlCssClass($value) |
| 558 | 561 | { |
@@ -216,6 +216,7 @@ |
||
| 216 | 216 | * This method is invoked when the {@link getDisplayMode DisplayMode} is 'LinkButton' |
| 217 | 217 | * and end-users click on one of the buttons. |
| 218 | 218 | * @param TBulletedListEventParameter event parameter. |
| 219 | + * @param TBulletedListEventParameter $param |
|
| 219 | 220 | */ |
| 220 | 221 | public function onClick($param) |
| 221 | 222 | { |