@@ -59,6 +59,10 @@ discard block |
||
59 | 59 | */ |
60 | 60 | protected $config; |
61 | 61 | |
62 | + /** |
|
63 | + * @param string $name |
|
64 | + * @param string $title |
|
65 | + */ |
|
62 | 66 | public function __construct($name, $title = null, $value = ""){ |
63 | 67 | $this->config = $this->config()->default_config; |
64 | 68 | |
@@ -71,6 +75,9 @@ discard block |
||
71 | 75 | parent::__construct($name, $title, $value); |
72 | 76 | } |
73 | 77 | |
78 | + /** |
|
79 | + * @param Form $form |
|
80 | + */ |
|
74 | 81 | public function setForm($form) { |
75 | 82 | parent::setForm($form); |
76 | 83 | |
@@ -81,6 +88,9 @@ discard block |
||
81 | 88 | return $this; |
82 | 89 | } |
83 | 90 | |
91 | + /** |
|
92 | + * @param string $name |
|
93 | + */ |
|
84 | 94 | public function setName($name) { |
85 | 95 | parent::setName($name); |
86 | 96 | |
@@ -93,7 +103,7 @@ discard block |
||
93 | 103 | |
94 | 104 | /** |
95 | 105 | * @param array $properties |
96 | - * @return HTMLText |
|
106 | + * @return string |
|
97 | 107 | */ |
98 | 108 | public function FieldHolder($properties = array()) { |
99 | 109 | $config = array( |
@@ -108,7 +118,7 @@ discard block |
||
108 | 118 | |
109 | 119 | /** |
110 | 120 | * @param array $properties |
111 | - * @return HTMLText |
|
121 | + * @return DBField |
|
112 | 122 | */ |
113 | 123 | public function Field($properties = array()) { |
114 | 124 | Requirements::css(FRAMEWORK_DIR . '/css/DatetimeField.css'); |
@@ -243,6 +253,7 @@ discard block |
||
243 | 253 | |
244 | 254 | /** |
245 | 255 | * @param FormField |
256 | + * @param DateField $field |
|
246 | 257 | */ |
247 | 258 | public function setDateField($field) { |
248 | 259 | $expected = $this->getName() . '[date]'; |
@@ -268,6 +279,7 @@ discard block |
||
268 | 279 | |
269 | 280 | /** |
270 | 281 | * @param FormField |
282 | + * @param TimeField $field |
|
271 | 283 | */ |
272 | 284 | public function setTimeField($field) { |
273 | 285 | $expected = $this->getName() . '[time]'; |
@@ -306,7 +318,7 @@ discard block |
||
306 | 318 | * to set field-specific config options. |
307 | 319 | * |
308 | 320 | * @param string $name |
309 | - * @param mixed $val |
|
321 | + * @param string $val |
|
310 | 322 | */ |
311 | 323 | public function setConfig($name, $val) { |
312 | 324 | $this->config[$name] = $val; |
@@ -324,7 +336,7 @@ discard block |
||
324 | 336 | * to get field-specific config options. |
325 | 337 | * |
326 | 338 | * @param String $name Optional, returns the whole configuration array if empty |
327 | - * @return mixed |
|
339 | + * @return string |
|
328 | 340 | */ |
329 | 341 | public function getConfig($name = null) { |
330 | 342 | if($name) { |
@@ -334,6 +346,9 @@ discard block |
||
334 | 346 | } |
335 | 347 | } |
336 | 348 | |
349 | + /** |
|
350 | + * @param RequiredFields $validator |
|
351 | + */ |
|
337 | 352 | public function validate($validator) { |
338 | 353 | $dateValid = $this->dateField->validate($validator); |
339 | 354 | $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( |
@@ -249,7 +249,6 @@ discard block |
||
249 | 249 | * for each of these categories |
250 | 250 | * |
251 | 251 | * @param string $category Category name |
252 | - * @param string,... $categories Additional category names |
|
253 | 252 | * @return $this |
254 | 253 | */ |
255 | 254 | public function setAllowedFileCategories($category) { |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | |
77 | 77 | /** |
78 | 78 | * @param array $properties |
79 | - * @return HTMLText |
|
79 | + * @return string |
|
80 | 80 | */ |
81 | 81 | public function Field($properties = array()) { |
82 | 82 | $properties = array_merge( |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | /** |
95 | 95 | * @param array $properties |
96 | - * @return HTMLText |
|
96 | + * @return string |
|
97 | 97 | */ |
98 | 98 | public function FieldHolder($properties = array()) { |
99 | 99 | return $this->Field($properties); |
@@ -157,6 +157,7 @@ discard block |
||
157 | 157 | * Enable or disable the rendering of this action as a <button /> |
158 | 158 | * |
159 | 159 | * @param boolean |
160 | + * @param boolean $bool |
|
160 | 161 | * @return $this |
161 | 162 | */ |
162 | 163 | public function setUseButtonTag($bool) { |
@@ -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 | */ |
@@ -1116,6 +1116,7 @@ discard block |
||
1116 | 1116 | * @todo Make this abstract. |
1117 | 1117 | * |
1118 | 1118 | * @param Validator |
1119 | + * @param RequiredFields $validator |
|
1119 | 1120 | * |
1120 | 1121 | * @return bool |
1121 | 1122 | */ |
@@ -1185,7 +1186,7 @@ discard block |
||
1185 | 1186 | * |
1186 | 1187 | * @param FieldList $containerFieldList |
1187 | 1188 | * |
1188 | - * @return FieldList |
|
1189 | + * @return FormField |
|
1189 | 1190 | */ |
1190 | 1191 | public function setContainerFieldList($containerFieldList) { |
1191 | 1192 | $this->containerFieldList = $containerFieldList; |
@@ -49,7 +49,6 @@ |
||
49 | 49 | |
50 | 50 | /** |
51 | 51 | * @param DataObject $obj |
52 | - * @param array $params |
|
53 | 52 | */ |
54 | 53 | public function __construct($obj) { |
55 | 54 | $this->obj = $obj; |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | * |
200 | 200 | * @todo refactor this into GridFieldComponent |
201 | 201 | * |
202 | - * @param mixed $value |
|
202 | + * @param string $value |
|
203 | 203 | * @param string|array $castingDefinition |
204 | 204 | * |
205 | 205 | * @return mixed |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | * |
287 | 287 | * @param array $properties |
288 | 288 | * |
289 | - * @return HTMLText |
|
289 | + * @return DBField |
|
290 | 290 | */ |
291 | 291 | public function FieldHolder($properties = array()) { |
292 | 292 | Requirements::css(THIRDPARTY_DIR . '/jquery-ui-themes/smoothness/jquery-ui.css'); |
@@ -571,7 +571,7 @@ discard block |
||
571 | 571 | * @param int $index |
572 | 572 | * @param DataObject $record |
573 | 573 | * |
574 | - * @return array |
|
574 | + * @return string[] |
|
575 | 575 | */ |
576 | 576 | protected function newRowClasses($total, $index, $record) { |
577 | 577 | $classes = array('ss-gridfield-item'); |
@@ -596,7 +596,7 @@ discard block |
||
596 | 596 | /** |
597 | 597 | * @param array $properties |
598 | 598 | * |
599 | - * @return HTMLText |
|
599 | + * @return DBField |
|
600 | 600 | */ |
601 | 601 | public function Field($properties = array()) { |
602 | 602 | return $this->FieldHolder($properties); |
@@ -129,7 +129,7 @@ |
||
129 | 129 | /** |
130 | 130 | * |
131 | 131 | * @param GridField $gridField |
132 | - * @return array |
|
132 | + * @return string[] |
|
133 | 133 | */ |
134 | 134 | public function getActions($gridField) { |
135 | 135 | return array('addto'); |
@@ -33,6 +33,7 @@ discard block |
||
33 | 33 | * If you attempt to return HTML for a fragment that doesn't exist, an |
34 | 34 | * exception will be thrown when the {@link GridField} is rendered. |
35 | 35 | * |
36 | + * @param GridField $gridField |
|
36 | 37 | * @return array |
37 | 38 | */ |
38 | 39 | public function getHTMLFragments($gridField); |
@@ -57,6 +58,7 @@ discard block |
||
57 | 58 | * @param GridField $gridField |
58 | 59 | * @param arary $columns List of columns |
59 | 60 | * @param array - List reference of all column names. |
61 | + * @return void |
|
60 | 62 | */ |
61 | 63 | public function augmentColumns($gridField, &$columns); |
62 | 64 | |
@@ -139,6 +141,7 @@ discard block |
||
139 | 141 | * @param String Action identifier, see {@link getActions()}. |
140 | 142 | * @param Array Arguments relevant for this |
141 | 143 | * @param Array All form data |
144 | + * @param string $actionName |
|
142 | 145 | */ |
143 | 146 | public function handleAction(GridField $gridField, $actionName, $arguments, $data); |
144 | 147 | } |
@@ -189,6 +192,7 @@ discard block |
||
189 | 192 | * |
190 | 193 | * Handler methods will be called on the component, rather than the |
191 | 194 | * {@link GridField}. |
195 | + * @param GridField $gridField |
|
192 | 196 | */ |
193 | 197 | public function getURLHandlers($gridField); |
194 | 198 | } |
@@ -205,7 +209,6 @@ discard block |
||
205 | 209 | /** |
206 | 210 | * Called when a grid field is saved - i.e. the form is submitted. |
207 | 211 | * |
208 | - * @param GridField $field |
|
209 | 212 | * @param DataObjectInterface $record |
210 | 213 | */ |
211 | 214 | public function handleSave(GridField $grid, DataObjectInterface $record); |
@@ -78,6 +78,7 @@ discard block |
||
78 | 78 | |
79 | 79 | /** |
80 | 80 | * @param String Class name or interface |
81 | + * @param string $type |
|
81 | 82 | * @return GridFieldConfig $this |
82 | 83 | */ |
83 | 84 | public function removeComponentsByType($type) { |
@@ -116,6 +117,7 @@ discard block |
||
116 | 117 | * Returns the first available component with the given class or interface. |
117 | 118 | * |
118 | 119 | * @param String ClassName |
120 | + * @param string $type |
|
119 | 121 | * @return GridFieldComponent |
120 | 122 | */ |
121 | 123 | public function getComponentByType($type) { |