@@ -293,7 +293,7 @@ discard block |
||
| 293 | 293 | * |
| 294 | 294 | * @param string $action |
| 295 | 295 | * |
| 296 | - * @return HTMLText |
|
| 296 | + * @return DBField |
|
| 297 | 297 | */ |
| 298 | 298 | public function defaultAction($action) { |
| 299 | 299 | return $this->getViewer($action)->process($this); |
@@ -429,7 +429,7 @@ discard block |
||
| 429 | 429 | * |
| 430 | 430 | * @param array $params |
| 431 | 431 | * |
| 432 | - * @return string |
|
| 432 | + * @return DBField |
|
| 433 | 433 | */ |
| 434 | 434 | public function render($params = null) { |
| 435 | 435 | $template = $this->getViewer($this->getAction()); |
@@ -594,7 +594,7 @@ discard block |
||
| 594 | 594 | * Tests whether a redirection has been requested. If redirect() has been called, it will return |
| 595 | 595 | * the URL redirected to. Otherwise, it will return null. |
| 596 | 596 | * |
| 597 | - * @return null|string |
|
| 597 | + * @return boolean |
|
| 598 | 598 | */ |
| 599 | 599 | public function redirectedTo() { |
| 600 | 600 | return $this->getResponse() && $this->getResponse()->getHeader('Location'); |
@@ -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|null |
|
| 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); |
@@ -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 DBField - the HTML for the column |
|
| 80 | 80 | */ |
| 81 | 81 | public function getColumnContent($gridField, $record, $columnName) { |
| 82 | 82 | // No permission checks, handled through GridFieldDetailForm, |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | /** |
| 19 | 19 | * Create a new action button. |
| 20 | - * @param action The method to call when the button is clicked |
|
| 20 | + * @param action string method to call when the button is clicked |
|
| 21 | 21 | * @param title The label on the button |
| 22 | 22 | * @param extraClass A CSS class to apply to the button in addition to 'action' |
| 23 | 23 | */ |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * @param array $properties |
| 35 | - * @return HTMLText |
|
| 35 | + * @return DBField |
|
| 36 | 36 | */ |
| 37 | 37 | public function Field($properties = array()) { |
| 38 | 38 | if($this->includeDefaultJS) { |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | /** |
| 80 | 80 | * @param array $properties |
| 81 | - * @return HTMLText |
|
| 81 | + * @return DBField |
|
| 82 | 82 | */ |
| 83 | 83 | public function Field($properties = array()) { |
| 84 | 84 | return DBField::create_field('HTMLText', |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | * |
| 77 | 77 | * @param string $name the field name |
| 78 | 78 | * @param string $title the field label |
| 79 | - * @param string|array $sourceObject The object-type to list in the tree. This could |
|
| 79 | + * @param string $sourceObject The object-type to list in the tree. This could |
|
| 80 | 80 | * be one of the following: |
| 81 | 81 | * - A DataObject class name with the {@link Hierarchy} extension. |
| 82 | 82 | * - An array of key/value pairs, like a {@link DropdownField} source. In |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | } |
| 205 | 205 | |
| 206 | 206 | /** |
| 207 | - * @return HTMLText |
|
| 207 | + * @return DBField |
|
| 208 | 208 | */ |
| 209 | 209 | public function Field($properties = array()) { |
| 210 | 210 | Requirements::add_i18n_javascript(FRAMEWORK_DIR . '/javascript/lang'); |
@@ -385,7 +385,7 @@ discard block |
||
| 385 | 385 | * If a filter function has been set, that will be called. And if search text is set, |
| 386 | 386 | * filter on that too. Return true if all applicable conditions are true, false otherwise. |
| 387 | 387 | * @param $node |
| 388 | - * @return unknown_type |
|
| 388 | + * @return boolean |
|
| 389 | 389 | */ |
| 390 | 390 | public function filterMarking($node) { |
| 391 | 391 | if ($this->filterCallback && !call_user_func($this->filterCallback, $node)) return false; |
@@ -436,7 +436,6 @@ discard block |
||
| 436 | 436 | } |
| 437 | 437 | |
| 438 | 438 | /** |
| 439 | - * @param String $field |
|
| 440 | 439 | */ |
| 441 | 440 | public function setSourceObject($class) { |
| 442 | 441 | $this->sourceObject = $class; |
@@ -211,7 +211,6 @@ discard block |
||
| 211 | 211 | * @param string $title The field label. |
| 212 | 212 | * @param SS_List $items If no items are defined, the field will try to auto-detect an existing relation on |
| 213 | 213 | * @link $record}, with the same name as the field name. |
| 214 | - * @param Form $form Reference to the container form |
|
| 215 | 214 | */ |
| 216 | 215 | public function __construct($name, $title = null, SS_List $items = null) { |
| 217 | 216 | |
@@ -1078,7 +1077,7 @@ discard block |
||
| 1078 | 1077 | |
| 1079 | 1078 | /** |
| 1080 | 1079 | * @param SS_HTTPRequest $request |
| 1081 | - * @return UploadField_ItemHandler |
|
| 1080 | + * @return UploadField_SelectHandler |
|
| 1082 | 1081 | */ |
| 1083 | 1082 | public function handleSelect(SS_HTTPRequest $request) { |
| 1084 | 1083 | if(!$this->canAttachExisting()) return $this->httpError(403); |
@@ -1434,7 +1433,7 @@ discard block |
||
| 1434 | 1433 | * Action to handle editing of a single file |
| 1435 | 1434 | * |
| 1436 | 1435 | * @param SS_HTTPRequest $request |
| 1437 | - * @return ViewableData_Customised |
|
| 1436 | + * @return DBField |
|
| 1438 | 1437 | */ |
| 1439 | 1438 | public function edit(SS_HTTPRequest $request) { |
| 1440 | 1439 | // Check form field state |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | |
| 77 | 77 | /** |
| 78 | 78 | * @param array $properties |
| 79 | - * @return HTMLText |
|
| 79 | + * @return DBField |
|
| 80 | 80 | */ |
| 81 | 81 | public function Field($properties = array()) { |
| 82 | 82 | Requirements::css(FRAMEWORK_DIR . '/css/CheckboxSetField.css'); |
@@ -465,7 +465,7 @@ discard block |
||
| 465 | 465 | * Combine the given forms into a formset with a tabbed interface |
| 466 | 466 | * |
| 467 | 467 | * @param array $forms List of LoginForm instances |
| 468 | - * @return string |
|
| 468 | + * @return DBField |
|
| 469 | 469 | */ |
| 470 | 470 | protected function generateLoginFormSet($forms) { |
| 471 | 471 | $viewData = new ArrayData(array( |
@@ -645,7 +645,6 @@ discard block |
||
| 645 | 645 | * - t: plaintext token |
| 646 | 646 | * |
| 647 | 647 | * @param Member $member Member object associated with this link. |
| 648 | - * @param string $autoLoginHash The auto login token. |
|
| 649 | 648 | */ |
| 650 | 649 | public static function getPasswordResetLink($member, $autologinToken) { |
| 651 | 650 | $autologinToken = urldecode($autologinToken); |
@@ -736,7 +735,7 @@ discard block |
||
| 736 | 735 | /** |
| 737 | 736 | * Factory method for the lost password form |
| 738 | 737 | * |
| 739 | - * @return Form Returns the lost password form |
|
| 738 | + * @return Security Returns the lost password form |
|
| 740 | 739 | */ |
| 741 | 740 | public function ChangePasswordForm() { |
| 742 | 741 | return Object::create('ChangePasswordForm', $this, 'ChangePasswordForm'); |
@@ -746,7 +745,7 @@ discard block |
||
| 746 | 745 | * Gets the template for an include used for security. |
| 747 | 746 | * For use in any subclass. |
| 748 | 747 | * |
| 749 | - * @return string|array Returns the template(s) for rendering |
|
| 748 | + * @return string[] Returns the template(s) for rendering |
|
| 750 | 749 | */ |
| 751 | 750 | public function getIncludeTemplate($name) { |
| 752 | 751 | return array('Security_' . $name); |
@@ -920,7 +919,7 @@ discard block |
||
| 920 | 919 | * @deprecated 4.0 Use the "Security.password_encryption_algorithm" config setting instead |
| 921 | 920 | * @param string $algorithm One of the available password encryption |
| 922 | 921 | * algorithms determined by {@link Security::get_encryption_algorithms()} |
| 923 | - * @return bool Returns TRUE if the passed algorithm was valid, otherwise FALSE. |
|
| 922 | + * @return boolean|null Returns TRUE if the passed algorithm was valid, otherwise FALSE. |
|
| 924 | 923 | */ |
| 925 | 924 | public static function set_password_encryption_algorithm($algorithm) { |
| 926 | 925 | Deprecation::notice('4.0', 'Use the "Security.password_encryption_algorithm" config setting instead'); |
@@ -1075,7 +1074,7 @@ discard block |
||
| 1075 | 1074 | /** |
| 1076 | 1075 | * Set to true to ignore access to disallowed actions, rather than returning permission failure |
| 1077 | 1076 | * Note that this is just a flag that other code needs to check with Security::ignore_disallowed_actions() |
| 1078 | - * @param $flag True or false |
|
| 1077 | + * @param boolean $flag True or false |
|
| 1079 | 1078 | */ |
| 1080 | 1079 | public static function set_ignore_disallowed_actions($flag) { |
| 1081 | 1080 | self::$ignore_disallowed_actions = $flag; |
@@ -112,6 +112,10 @@ discard block |
||
| 112 | 112 | )); |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | + /** |
|
| 116 | + * @param DBField $result |
|
| 117 | + * @param string[] $expected |
|
| 118 | + */ |
|
| 115 | 119 | private function assertExpectedStrings($result, $expected) { |
| 116 | 120 | foreach ($expected as $expectedStr) { |
| 117 | 121 | $this->assertTrue( |
@@ -718,6 +722,10 @@ discard block |
||
| 718 | 722 | $this->assertEquals('A A1 A1 i A1 ii A2 A3', $rationalisedResult); |
| 719 | 723 | } |
| 720 | 724 | |
| 725 | + /** |
|
| 726 | + * @param string $a |
|
| 727 | + * @param string $b |
|
| 728 | + */ |
|
| 721 | 729 | public function assertEqualIgnoringWhitespace($a, $b) { |
| 722 | 730 | $this->assertEquals(preg_replace('/\s+/', '', $a), preg_replace('/\s+/', '', $b)); |
| 723 | 731 | } |
@@ -1328,6 +1336,11 @@ discard block |
||
| 1328 | 1336 | Config::inst()->update('SSViewer', 'source_file_comments', false); |
| 1329 | 1337 | Config::inst()->update('Director', 'environment_type', $origEnv); |
| 1330 | 1338 | } |
| 1339 | + |
|
| 1340 | + /** |
|
| 1341 | + * @param string $name |
|
| 1342 | + * @param string $expected |
|
| 1343 | + */ |
|
| 1331 | 1344 | private function _renderWithSourceFileComments($name, $expected) { |
| 1332 | 1345 | $viewer = new SSViewer(array($name)); |
| 1333 | 1346 | $data = new ArrayData(array()); |