@@ -463,7 +463,7 @@ discard block |
||
| 463 | 463 | /** |
| 464 | 464 | * Returns the part of the URL, 'http://www.mysite.com'. |
| 465 | 465 | * |
| 466 | - * @return boolean|string The domain from the PHP environment. Returns FALSE is this environment variable isn't |
|
| 466 | + * @return string|false The domain from the PHP environment. Returns FALSE is this environment variable isn't |
|
| 467 | 467 | * set. |
| 468 | 468 | */ |
| 469 | 469 | public static function protocolAndHost() { |
@@ -747,7 +747,6 @@ discard block |
||
| 747 | 747 | /** |
| 748 | 748 | * Takes a $_SERVER data array and extracts HTTP request headers. |
| 749 | 749 | * |
| 750 | - * @param array $data |
|
| 751 | 750 | * @return array |
| 752 | 751 | */ |
| 753 | 752 | public static function extract_request_headers(array $server) { |
@@ -780,7 +779,7 @@ discard block |
||
| 780 | 779 | |
| 781 | 780 | /** |
| 782 | 781 | * Returns true if the given file exists. |
| 783 | - * @param $file Filename specified relative to the site root |
|
| 782 | + * @param string $file Filename specified relative to the site root |
|
| 784 | 783 | */ |
| 785 | 784 | public static function fileExists($file) { |
| 786 | 785 | // replace any appended query-strings, e.g. /path/to/foo.php?bar=1 to /path/to/foo.php |
@@ -296,6 +296,7 @@ |
||
| 296 | 296 | * |
| 297 | 297 | * Seperated out from parse partially so that we can recurse if there are multiple statics |
| 298 | 298 | * being declared in a comma seperated list |
| 299 | + * @param string $class |
|
| 299 | 300 | */ |
| 300 | 301 | function parseStatic($access, $class) { |
| 301 | 302 | $variable = null; |
@@ -72,7 +72,7 @@ |
||
| 72 | 72 | * greater than or equal to this version, a message will be raised |
| 73 | 73 | * |
| 74 | 74 | * @static |
| 75 | - * @param $ver string - |
|
| 75 | + * @param string|null $ver string - |
|
| 76 | 76 | * A php standard version string, see http://php.net/manual/en/function.version-compare.php for details. |
| 77 | 77 | * @param null $forModule string - |
| 78 | 78 | * The name of a module. The passed version will be used as the check value for |
@@ -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'); |
@@ -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) { |
@@ -1529,7 +1531,7 @@ discard block |
||
| 1529 | 1531 | * This is returned when you access a form as $FormObject rather |
| 1530 | 1532 | * than <% with FormObject %> |
| 1531 | 1533 | * |
| 1532 | - * @return HTML |
|
| 1534 | + * @return HTMLText |
|
| 1533 | 1535 | */ |
| 1534 | 1536 | public function forTemplate() { |
| 1535 | 1537 | $return = $this->renderWith(array_merge( |
@@ -1549,7 +1551,7 @@ discard block |
||
| 1549 | 1551 | * It triggers slightly different behaviour, such as disabling the rewriting |
| 1550 | 1552 | * of # links. |
| 1551 | 1553 | * |
| 1552 | - * @return HTML |
|
| 1554 | + * @return HTMLText |
|
| 1553 | 1555 | */ |
| 1554 | 1556 | public function forAjaxTemplate() { |
| 1555 | 1557 | $view = new SSViewer(array( |
@@ -1572,7 +1574,7 @@ discard block |
||
| 1572 | 1574 | * and _form_enctype. These are the attributes of the form. These fields |
| 1573 | 1575 | * can be used to send the form to Ajax. |
| 1574 | 1576 | * |
| 1575 | - * @return HTML |
|
| 1577 | + * @return string |
|
| 1576 | 1578 | */ |
| 1577 | 1579 | public function formHtmlContent() { |
| 1578 | 1580 | $this->IncludeFormTag = false; |
@@ -1830,6 +1832,9 @@ discard block |
||
| 1830 | 1832 | |
| 1831 | 1833 | protected $form; |
| 1832 | 1834 | |
| 1835 | + /** |
|
| 1836 | + * @param Form $form |
|
| 1837 | + */ |
|
| 1833 | 1838 | public function __construct($form) { |
| 1834 | 1839 | $this->form = $form; |
| 1835 | 1840 | 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; |
@@ -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); |
@@ -202,7 +202,6 @@ discard block |
||
| 202 | 202 | * @param string $title The field label. |
| 203 | 203 | * @param SS_List $items If no items are defined, the field will try to auto-detect an existing relation on |
| 204 | 204 | * @link $record}, with the same name as the field name. |
| 205 | - * @param Form $form Reference to the container form |
|
| 206 | 205 | */ |
| 207 | 206 | public function __construct($name, $title = null, SS_List $items = null) { |
| 208 | 207 | |
@@ -1052,7 +1051,7 @@ discard block |
||
| 1052 | 1051 | |
| 1053 | 1052 | /** |
| 1054 | 1053 | * @param SS_HTTPRequest $request |
| 1055 | - * @return UploadField_ItemHandler |
|
| 1054 | + * @return UploadField_SelectHandler |
|
| 1056 | 1055 | */ |
| 1057 | 1056 | public function handleSelect(SS_HTTPRequest $request) { |
| 1058 | 1057 | if(!$this->canAttachExisting()) return $this->httpError(403); |
@@ -1341,7 +1340,7 @@ discard block |
||
| 1341 | 1340 | |
| 1342 | 1341 | /** |
| 1343 | 1342 | * @param UploadFIeld $parent |
| 1344 | - * @param int $item |
|
| 1343 | + * @param int $itemID |
|
| 1345 | 1344 | */ |
| 1346 | 1345 | public function __construct($parent, $itemID) { |
| 1347 | 1346 | $this->parent = $parent; |
@@ -1410,7 +1409,7 @@ discard block |
||
| 1410 | 1409 | * Action to handle editing of a single file |
| 1411 | 1410 | * |
| 1412 | 1411 | * @param SS_HTTPRequest $request |
| 1413 | - * @return ViewableData_Customised |
|
| 1412 | + * @return HTMLText |
|
| 1414 | 1413 | */ |
| 1415 | 1414 | public function edit(SS_HTTPRequest $request) { |
| 1416 | 1415 | // Check form field state |