@@ -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, |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | * |
67 | 67 | * @param GridField |
68 | 68 | * |
69 | - * @return array |
|
69 | + * @return string[] |
|
70 | 70 | */ |
71 | 71 | public function getActions($gridField) { |
72 | 72 | return array('print'); |
@@ -100,6 +100,7 @@ discard block |
||
100 | 100 | |
101 | 101 | /** |
102 | 102 | * Handle the print, for both the action button and the URL |
103 | + * @param GridField $gridField |
|
103 | 104 | */ |
104 | 105 | public function handlePrint($gridField, $request = null) { |
105 | 106 | set_time_limit(60); |
@@ -10,7 +10,7 @@ |
||
10 | 10 | /** |
11 | 11 | * @param array $properties |
12 | 12 | * |
13 | - * @return HTMLText |
|
13 | + * @return string |
|
14 | 14 | */ |
15 | 15 | public function FieldHolder($properties = array()) { |
16 | 16 | return $this->Field($properties); |
@@ -14,7 +14,7 @@ |
||
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Create a new action button. |
17 | - * @param action The method to call when the button is clicked |
|
17 | + * @param action string method to call when the button is clicked |
|
18 | 18 | * @param title The label on the button |
19 | 19 | * @param extraClass A CSS class to apply to the button in addition to 'action' |
20 | 20 | */ |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | /** |
13 | 13 | * Represent the given form in a tabular style |
14 | - * @param form The form to decorate. |
|
14 | + * @param form Form form to decorate. |
|
15 | 15 | */ |
16 | 16 | public function __construct(Form $form) { |
17 | 17 | $this->form = $form; |
@@ -176,6 +176,7 @@ |
||
176 | 176 | * Add {@link RequiredField} objects together |
177 | 177 | * |
178 | 178 | * @param RequiredFields |
179 | + * @param RequiredFields $requiredFields |
|
179 | 180 | * |
180 | 181 | * @return RequiredFields |
181 | 182 | */ |
@@ -23,8 +23,6 @@ discard block |
||
23 | 23 | * @uses FormField::name_to_label() |
24 | 24 | * |
25 | 25 | * @param string $name Identifier of the tab, without characters like dots or spaces |
26 | - * @param string $title Natural language title of the tab. If its left out, |
|
27 | - * the class uses {@link FormField::name_to_label()} to produce a title from the {@link $name} parameter. |
|
28 | 26 | * @param FormField All following parameters are inserted as children to this tab |
29 | 27 | */ |
30 | 28 | public function __construct($name) { |
@@ -54,6 +52,9 @@ discard block |
||
54 | 52 | return $this->children; |
55 | 53 | } |
56 | 54 | |
55 | + /** |
|
56 | + * @param TabSet $val |
|
57 | + */ |
|
57 | 58 | public function setTabSet($val) { |
58 | 59 | $this->tabSet = $val; |
59 | 60 | return $this; |
@@ -29,8 +29,6 @@ |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @param string $name Identifier |
32 | - * @param string $title (Optional) Natural language title of the tabset |
|
33 | - * @param Tab|TabSet $unknown All further parameters are inserted as children into the TabSet |
|
34 | 32 | */ |
35 | 33 | public function __construct($name) { |
36 | 34 | $args = func_get_args(); |
@@ -50,6 +50,10 @@ discard block |
||
50 | 50 | */ |
51 | 51 | protected $valueObj = null; |
52 | 52 | |
53 | + /** |
|
54 | + * @param string $name |
|
55 | + * @param string $title |
|
56 | + */ |
|
53 | 57 | public function __construct($name, $title = null, $value = ""){ |
54 | 58 | if(!$this->locale) { |
55 | 59 | $this->locale = i18n::get_locale(); |
@@ -228,6 +232,9 @@ discard block |
||
228 | 232 | return $this->castedCopy('TimeField_Readonly'); |
229 | 233 | } |
230 | 234 | |
235 | + /** |
|
236 | + * @param string $class |
|
237 | + */ |
|
231 | 238 | public function castedCopy($class) { |
232 | 239 | $copy = parent::castedCopy($class); |
233 | 240 | if($copy->hasMethod('setConfig')) { |