@@ -72,7 +72,7 @@ |
||
72 | 72 | * @param $objs The SS_List of objects to perform this batch action |
73 | 73 | * on. |
74 | 74 | * @param $helperMethod The method to call on each of those objects. |
75 | - * @return JSON encoded map in the following format: |
|
75 | + * @return string encoded map in the following format: |
|
76 | 76 | * { |
77 | 77 | * 'modified': { |
78 | 78 | * 3: {'TreeTitle': 'Page3'}, |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | * left. |
87 | 87 | * @param array $attributes an array of attributes to include on the link. |
88 | 88 | * |
89 | - * @return boolean The result of the operation. |
|
89 | + * @return boolean|null The result of the operation. |
|
90 | 90 | */ |
91 | 91 | public static function add_link($code, $menuTitle, $url, $priority = -1, $attributes = null) { |
92 | 92 | return self::add_menu_item($code, $menuTitle, $url, null, $priority, $attributes); |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | * have the rights to access some other part of the admin area. |
107 | 107 | * @param array $attributes an array of attributes to include on the link. |
108 | 108 | * |
109 | - * @return boolean Success |
|
109 | + * @return boolean|null Success |
|
110 | 110 | */ |
111 | 111 | public static function add_menu_item($code, $menuTitle, $url, $controllerClass = null, $priority = -1, |
112 | 112 | $attributes = null) { |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | * have the rights to access some other part of the admin area. |
238 | 238 | * @param array $attributes an array of attributes to include on the link. |
239 | 239 | * |
240 | - * @return boolean Success |
|
240 | + * @return boolean|null Success |
|
241 | 241 | */ |
242 | 242 | public static function replace_menu_item($code, $menuTitle, $url, $controllerClass = null, $priority = -1, |
243 | 243 | $attributes = null) { |
@@ -256,6 +256,8 @@ discard block |
||
256 | 256 | |
257 | 257 | /** |
258 | 258 | * Add a previously built menu item object to the menu |
259 | + * @param string $code |
|
260 | + * @param CMSMenuItem $cmsMenuItem |
|
259 | 261 | */ |
260 | 262 | protected static function add_menu_item_obj($code, $cmsMenuItem) { |
261 | 263 | self::$menu_item_changes[] = array( |
@@ -72,7 +72,7 @@ |
||
72 | 72 | /** |
73 | 73 | * @param array |
74 | 74 | * |
75 | - * @return HTML |
|
75 | + * @return string |
|
76 | 76 | */ |
77 | 77 | public function getAttributesHTML($attrs = null) { |
78 | 78 | $exclude = (is_string($attrs)) ? func_get_args() : null; |
@@ -14,6 +14,10 @@ |
||
14 | 14 | */ |
15 | 15 | protected $group; |
16 | 16 | |
17 | + /** |
|
18 | + * @param SecurityAdmin $controller |
|
19 | + * @param string $name |
|
20 | + */ |
|
17 | 21 | public function __construct($controller, $name, $fields = null, $actions = null, $validator = null) { |
18 | 22 | if(!$fields) { |
19 | 23 | $helpHtml = _t( |
@@ -14,6 +14,10 @@ discard block |
||
14 | 14 | */ |
15 | 15 | protected $group; |
16 | 16 | |
17 | + /** |
|
18 | + * @param SecurityAdmin $controller |
|
19 | + * @param string $name |
|
20 | + */ |
|
17 | 21 | public function __construct($controller, $name, $fields = null, $actions = null, $validator = null) { |
18 | 22 | if(!$fields) { |
19 | 23 | $helpHtml = _t( |
@@ -100,7 +104,7 @@ discard block |
||
100 | 104 | } |
101 | 105 | |
102 | 106 | /** |
103 | - * @param $group Group |
|
107 | + * @param DataObject $group Group |
|
104 | 108 | */ |
105 | 109 | public function setGroup($group) { |
106 | 110 | $this->group = $group; |
@@ -336,8 +336,8 @@ discard block |
||
336 | 336 | /** |
337 | 337 | * Extracts the response body and headers from a full curl response |
338 | 338 | * |
339 | - * @param curl_handle $ch The curl handle for the request |
|
340 | - * @param string $rawResponse The raw response text |
|
339 | + * @param resource $ch The curl handle for the request |
|
340 | + * @param string $rawHeaders |
|
341 | 341 | * |
342 | 342 | * @return RestfulService_Response The response object |
343 | 343 | */ |
@@ -601,7 +601,7 @@ discard block |
||
601 | 601 | * get the cached response object. This allows you to access the cached |
602 | 602 | * eaders, not just the cached body. |
603 | 603 | * |
604 | - * @return RestfulSerivice_Response The cached response object |
|
604 | + * @return boolean The cached response object |
|
605 | 605 | */ |
606 | 606 | public function getCachedResponse() { |
607 | 607 | return $this->cachedResponse; |
@@ -214,6 +214,7 @@ discard block |
||
214 | 214 | * via the standard template inclusion process. |
215 | 215 | * |
216 | 216 | * @param string |
217 | + * @param string $template |
|
217 | 218 | */ |
218 | 219 | public function setTemplate($template) { |
219 | 220 | $this->template = $template; |
@@ -269,6 +270,9 @@ discard block |
||
269 | 270 | |
270 | 271 | /** |
271 | 272 | * Create a new RSSFeed entry. |
273 | + * @param string $titleField |
|
274 | + * @param string $descriptionField |
|
275 | + * @param string $authorField |
|
272 | 276 | */ |
273 | 277 | public function __construct($entry, $titleField, $descriptionField, |
274 | 278 | $authorField) { |
@@ -310,6 +314,7 @@ discard block |
||
310 | 314 | /** |
311 | 315 | * Return the named field as an obj() call from $this->failover. |
312 | 316 | * Default to the given class if there's no casting information. |
317 | + * @param string $fieldName |
|
313 | 318 | */ |
314 | 319 | public function rssField($fieldName, $defaultClass = 'Varchar') { |
315 | 320 | if($fieldName) { |
@@ -109,6 +109,7 @@ |
||
109 | 109 | /** |
110 | 110 | * Returns true if negotiation is enabled for the given response. By default, negotiation is only |
111 | 111 | * enabled for pages that have the xml header. |
112 | + * @param SS_HTTPResponse $response |
|
112 | 113 | */ |
113 | 114 | public static function enabled_for($response) { |
114 | 115 | $contentType = $response->getHeader("Content-Type"); |
@@ -144,13 +144,13 @@ |
||
144 | 144 | * @see http://uk3.php.net/manual/en/function.setcookie.php |
145 | 145 | * |
146 | 146 | * @param string $name The name of the cookie |
147 | - * @param string|array $value The value for the cookie to hold |
|
147 | + * @param false|string $value The value for the cookie to hold |
|
148 | 148 | * @param int $expiry The number of days until expiry |
149 | 149 | * @param string $path The path to save the cookie on (falls back to site base) |
150 | 150 | * @param string $domain The domain to make the cookie available on |
151 | 151 | * @param boolean $secure Can the cookie only be sent over SSL? |
152 | 152 | * @param boolean $httpOnly Prevent the cookie being accessible by JS |
153 | - * @return boolean If the cookie was set or not; doesn't mean it's accepted by the browser |
|
153 | + * @return boolean|null If the cookie was set or not; doesn't mean it's accepted by the browser |
|
154 | 154 | */ |
155 | 155 | protected function outputCookie( |
156 | 156 | $name, $value, $expiry = 90, $path = null, $domain = null, $secure = false, $httpOnly = true |