@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | * Set a different instance than {@link Upload_Validator} |
| 103 | 103 | * for this upload session. |
| 104 | 104 | * |
| 105 | - * @param object $validator |
|
| 105 | + * @param Upload_Validator $validator |
|
| 106 | 106 | */ |
| 107 | 107 | public function setValidator($validator) { |
| 108 | 108 | $this->validator = $validator; |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | * |
| 116 | 116 | * @param $tmpFile array Indexed array that PHP generated for every file it uploads. |
| 117 | 117 | * @param $folderPath string Folder path relative to /assets |
| 118 | - * @return Boolean|string Either success or error-message. |
|
| 118 | + * @return boolean Either success or error-message. |
|
| 119 | 119 | */ |
| 120 | 120 | public function load($tmpFile, $folderPath = false) { |
| 121 | 121 | $this->clearErrors(); |
@@ -231,7 +231,8 @@ discard block |
||
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
| 234 | - * @return Boolean |
|
| 234 | + * @param boolean $bool |
|
| 235 | + * @return boolean|null |
|
| 235 | 236 | */ |
| 236 | 237 | public function setReplaceFile($bool) { |
| 237 | 238 | $this->replaceFile = $bool; |
@@ -295,7 +296,7 @@ discard block |
||
| 295 | 296 | /** |
| 296 | 297 | * Determines wether previous operations caused an error. |
| 297 | 298 | * |
| 298 | - * @return boolean |
|
| 299 | + * @return integer |
|
| 299 | 300 | */ |
| 300 | 301 | public function isError() { |
| 301 | 302 | return (count($this->errors)); |
@@ -90,6 +90,10 @@ discard block |
||
| 90 | 90 | */ |
| 91 | 91 | protected $valueObj = null; |
| 92 | 92 | |
| 93 | + /** |
|
| 94 | + * @param string $name |
|
| 95 | + * @param string $title |
|
| 96 | + */ |
|
| 93 | 97 | public function __construct($name, $title = null, $value = null) { |
| 94 | 98 | if(!$this->locale) { |
| 95 | 99 | $this->locale = i18n::get_locale(); |
@@ -288,6 +292,9 @@ discard block |
||
| 288 | 292 | return $field; |
| 289 | 293 | } |
| 290 | 294 | |
| 295 | + /** |
|
| 296 | + * @param string $class |
|
| 297 | + */ |
|
| 291 | 298 | public function castedCopy($class) { |
| 292 | 299 | $copy = new $class($this->name); |
| 293 | 300 | if($copy->hasMethod('setConfig')) { |
@@ -326,7 +333,7 @@ discard block |
||
| 326 | 333 | * @deprecated 4.0 Use the "DateField.default_config" config setting instead |
| 327 | 334 | * @param String $k |
| 328 | 335 | * @param mixed $v |
| 329 | - * @return boolean |
|
| 336 | + * @return boolean|null |
|
| 330 | 337 | */ |
| 331 | 338 | public static function set_default_config($k, $v) { |
| 332 | 339 | Deprecation::notice('4.0', 'Use the "DateField.default_config" config setting instead'); |
@@ -56,6 +56,10 @@ discard block |
||
| 56 | 56 | */ |
| 57 | 57 | protected $config; |
| 58 | 58 | |
| 59 | + /** |
|
| 60 | + * @param string $name |
|
| 61 | + * @param string $title |
|
| 62 | + */ |
|
| 59 | 63 | public function __construct($name, $title = null, $value = ""){ |
| 60 | 64 | $this->config = $this->config()->default_config; |
| 61 | 65 | |
@@ -68,6 +72,9 @@ discard block |
||
| 68 | 72 | parent::__construct($name, $title, $value); |
| 69 | 73 | } |
| 70 | 74 | |
| 75 | + /** |
|
| 76 | + * @param Form $form |
|
| 77 | + */ |
|
| 71 | 78 | public function setForm($form) { |
| 72 | 79 | parent::setForm($form); |
| 73 | 80 | |
@@ -78,6 +85,9 @@ discard block |
||
| 78 | 85 | return $this; |
| 79 | 86 | } |
| 80 | 87 | |
| 88 | + /** |
|
| 89 | + * @param string $name |
|
| 90 | + */ |
|
| 81 | 91 | public function setName($name) { |
| 82 | 92 | parent::setName($name); |
| 83 | 93 | |
@@ -90,7 +100,7 @@ discard block |
||
| 90 | 100 | |
| 91 | 101 | /** |
| 92 | 102 | * @param array $properties |
| 93 | - * @return HTMLText |
|
| 103 | + * @return string |
|
| 94 | 104 | */ |
| 95 | 105 | public function FieldHolder($properties = array()) { |
| 96 | 106 | $config = array( |
@@ -240,6 +250,7 @@ discard block |
||
| 240 | 250 | |
| 241 | 251 | /** |
| 242 | 252 | * @param FormField |
| 253 | + * @param DateField $field |
|
| 243 | 254 | */ |
| 244 | 255 | public function setDateField($field) { |
| 245 | 256 | $expected = $this->getName() . '[date]'; |
@@ -265,6 +276,7 @@ discard block |
||
| 265 | 276 | |
| 266 | 277 | /** |
| 267 | 278 | * @param FormField |
| 279 | + * @param TimeField $field |
|
| 268 | 280 | */ |
| 269 | 281 | public function setTimeField($field) { |
| 270 | 282 | $expected = $this->getName() . '[time]'; |
@@ -303,7 +315,7 @@ discard block |
||
| 303 | 315 | * to set field-specific config options. |
| 304 | 316 | * |
| 305 | 317 | * @param string $name |
| 306 | - * @param mixed $val |
|
| 318 | + * @param string $val |
|
| 307 | 319 | */ |
| 308 | 320 | public function setConfig($name, $val) { |
| 309 | 321 | $this->config[$name] = $val; |
@@ -321,7 +333,7 @@ discard block |
||
| 321 | 333 | * to get field-specific config options. |
| 322 | 334 | * |
| 323 | 335 | * @param String $name Optional, returns the whole configuration array if empty |
| 324 | - * @return mixed |
|
| 336 | + * @return string |
|
| 325 | 337 | */ |
| 326 | 338 | public function getConfig($name = null) { |
| 327 | 339 | if($name) { |
@@ -331,6 +343,9 @@ discard block |
||
| 331 | 343 | } |
| 332 | 344 | } |
| 333 | 345 | |
| 346 | + /** |
|
| 347 | + * @param RequiredFields $validator |
|
| 348 | + */ |
|
| 334 | 349 | public function validate($validator) { |
| 335 | 350 | $dateValid = $this->dateField->validate($validator); |
| 336 | 351 | $timeValid = $this->timeField->validate($validator); |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | |
| 86 | 86 | /** |
| 87 | 87 | * @param array $properties |
| 88 | - * @return HTMLText |
|
| 88 | + * @return string |
|
| 89 | 89 | */ |
| 90 | 90 | public function Field($properties = array()) { |
| 91 | 91 | $properties = array_merge($properties, array( |
@@ -148,7 +148,6 @@ discard block |
||
| 148 | 148 | /** |
| 149 | 149 | * Get custom validator for this field |
| 150 | 150 | * |
| 151 | - * @param Upload_Validator $validator |
|
| 152 | 151 | */ |
| 153 | 152 | public function getValidator() { |
| 154 | 153 | return $this->upload->getValidator(); |
@@ -244,7 +243,6 @@ discard block |
||
| 244 | 243 | * for each of these categories |
| 245 | 244 | * |
| 246 | 245 | * @param string $category Category name |
| 247 | - * @param string,... $categories Additional category names |
|
| 248 | 246 | * @return $this |
| 249 | 247 | */ |
| 250 | 248 | public function setAllowedFileCategories($category) { |
@@ -532,7 +532,7 @@ discard block |
||
| 532 | 532 | /** |
| 533 | 533 | * Fields can have action to, let's check if anyone of the responds to $funcname them |
| 534 | 534 | * |
| 535 | - * @param SS_List|array $fields |
|
| 535 | + * @param FieldList|null $fields |
|
| 536 | 536 | * @param callable $funcName |
| 537 | 537 | * @return FormField |
| 538 | 538 | */ |
@@ -791,6 +791,7 @@ discard block |
||
| 791 | 791 | } |
| 792 | 792 | |
| 793 | 793 | /** |
| 794 | + * @param string $name |
|
| 794 | 795 | * @return string $name |
| 795 | 796 | */ |
| 796 | 797 | public function getAttribute($name) { |
@@ -825,6 +826,7 @@ discard block |
||
| 825 | 826 | * |
| 826 | 827 | * @param array Custom attributes to process. Falls back to {@link getAttributes()}. |
| 827 | 828 | * If at least one argument is passed as a string, all arguments act as excludes by name. |
| 829 | + * @param string $attrs |
|
| 828 | 830 | * |
| 829 | 831 | * @return string HTML attributes, ready for insertion into an HTML tag |
| 830 | 832 | */ |
@@ -1032,7 +1034,7 @@ discard block |
||
| 1032 | 1034 | * If set to false (the default), then the form method is only used to construct the default |
| 1033 | 1035 | * form. |
| 1034 | 1036 | * |
| 1035 | - * @param $bool boolean |
|
| 1037 | + * @param boolean $bool boolean |
|
| 1036 | 1038 | * @return $this |
| 1037 | 1039 | */ |
| 1038 | 1040 | public function setStrictFormMethodCheck($bool) { |
@@ -1541,7 +1543,7 @@ discard block |
||
| 1541 | 1543 | * This is returned when you access a form as $FormObject rather |
| 1542 | 1544 | * than <% with FormObject %> |
| 1543 | 1545 | * |
| 1544 | - * @return HTML |
|
| 1546 | + * @return HTMLText |
|
| 1545 | 1547 | */ |
| 1546 | 1548 | public function forTemplate() { |
| 1547 | 1549 | $return = $this->renderWith(array_merge( |
@@ -1561,7 +1563,7 @@ discard block |
||
| 1561 | 1563 | * It triggers slightly different behaviour, such as disabling the rewriting |
| 1562 | 1564 | * of # links. |
| 1563 | 1565 | * |
| 1564 | - * @return HTML |
|
| 1566 | + * @return HTMLText |
|
| 1565 | 1567 | */ |
| 1566 | 1568 | public function forAjaxTemplate() { |
| 1567 | 1569 | $view = new SSViewer(array( |
@@ -1584,7 +1586,7 @@ discard block |
||
| 1584 | 1586 | * and _form_enctype. These are the attributes of the form. These fields |
| 1585 | 1587 | * can be used to send the form to Ajax. |
| 1586 | 1588 | * |
| 1587 | - * @return HTML |
|
| 1589 | + * @return string |
|
| 1588 | 1590 | */ |
| 1589 | 1591 | public function formHtmlContent() { |
| 1590 | 1592 | $this->IncludeFormTag = false; |
@@ -1842,6 +1844,9 @@ discard block |
||
| 1842 | 1844 | |
| 1843 | 1845 | protected $form; |
| 1844 | 1846 | |
| 1847 | + /** |
|
| 1848 | + * @param Form $form |
|
| 1849 | + */ |
|
| 1845 | 1850 | public function __construct($form) { |
| 1846 | 1851 | $this->form = $form; |
| 1847 | 1852 | parent::__construct(); |
@@ -532,6 +532,7 @@ discard block |
||
| 532 | 532 | * |
| 533 | 533 | * Caution: this doesn't work on all fields, see {@link setAttribute()}. |
| 534 | 534 | * |
| 535 | + * @param string $name |
|
| 535 | 536 | * @return null|string |
| 536 | 537 | */ |
| 537 | 538 | public function getAttribute($name) { |
@@ -643,7 +644,6 @@ discard block |
||
| 643 | 644 | * Set the field value. |
| 644 | 645 | * |
| 645 | 646 | * @param mixed $value |
| 646 | - * @param null|array|DataObject $data {@see Form::loadDataFrom} |
|
| 647 | 647 | * |
| 648 | 648 | * @return $this |
| 649 | 649 | */ |
@@ -1185,7 +1185,7 @@ discard block |
||
| 1185 | 1185 | * |
| 1186 | 1186 | * @param FieldList $containerFieldList |
| 1187 | 1187 | * |
| 1188 | - * @return FieldList |
|
| 1188 | + * @return FormField |
|
| 1189 | 1189 | */ |
| 1190 | 1190 | public function setContainerFieldList($containerFieldList) { |
| 1191 | 1191 | $this->containerFieldList = $containerFieldList; |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | * |
| 193 | 193 | * @todo refactor this into GridFieldComponent |
| 194 | 194 | * |
| 195 | - * @param mixed $value |
|
| 195 | + * @param string $value |
|
| 196 | 196 | * @param string|array $castingDefinition |
| 197 | 197 | * |
| 198 | 198 | * @return mixed |
@@ -564,7 +564,7 @@ discard block |
||
| 564 | 564 | * @param int $index |
| 565 | 565 | * @param DataObject $record |
| 566 | 566 | * |
| 567 | - * @return array |
|
| 567 | + * @return string[] |
|
| 568 | 568 | */ |
| 569 | 569 | protected function newRowClasses($total, $index, $record) { |
| 570 | 570 | $classes = array('ss-gridfield-item'); |
@@ -164,6 +164,7 @@ discard block |
||
| 164 | 164 | |
| 165 | 165 | /** |
| 166 | 166 | * @param String |
| 167 | + * @param string $class |
|
| 167 | 168 | */ |
| 168 | 169 | public function setItemRequestClass($class) { |
| 169 | 170 | $this->itemRequestClass = $class; |
@@ -271,6 +272,9 @@ discard block |
||
| 271 | 272 | parent::__construct(); |
| 272 | 273 | } |
| 273 | 274 | |
| 275 | + /** |
|
| 276 | + * @param string $action |
|
| 277 | + */ |
|
| 274 | 278 | public function Link($action = null) { |
| 275 | 279 | return Controller::join_links($this->gridField->Link('item'), |
| 276 | 280 | $this->record->ID ? $this->record->ID : 'new', $action); |
@@ -299,6 +303,9 @@ discard block |
||
| 299 | 303 | } |
| 300 | 304 | } |
| 301 | 305 | |
| 306 | + /** |
|
| 307 | + * @param SS_HTTPRequest $request |
|
| 308 | + */ |
|
| 302 | 309 | public function edit($request) { |
| 303 | 310 | $controller = $this->getToplevelController(); |
| 304 | 311 | $form = $this->ItemEditForm($this->gridField, $request); |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | * Which columns are handled by this component |
| 56 | 56 | * |
| 57 | 57 | * @param GridField $gridField |
| 58 | - * @return array |
|
| 58 | + * @return string[] |
|
| 59 | 59 | */ |
| 60 | 60 | public function getColumnsHandled($gridField) { |
| 61 | 61 | return array('Actions'); |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | * @param DataObject $record |
| 77 | 77 | * @param string $columnName |
| 78 | 78 | * |
| 79 | - * @return string - the HTML for the column |
|
| 79 | + * @return HTMLText - the HTML for the column |
|
| 80 | 80 | */ |
| 81 | 81 | public function getColumnContent($gridField, $record, $columnName) { |
| 82 | 82 | // No permission checks, handled through GridFieldDetailForm, |