@@ -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 | */ |
@@ -32,6 +32,10 @@ discard block |
||
| 32 | 32 | */ |
| 33 | 33 | protected $fieldCurrency = null; |
| 34 | 34 | |
| 35 | + /** |
|
| 36 | + * @param string $name |
|
| 37 | + * @param string $title |
|
| 38 | + */ |
|
| 35 | 39 | public function __construct($name, $title = null, $value = "") { |
| 36 | 40 | // naming with underscores to prevent values from actually being saved somewhere |
| 37 | 41 | $this->fieldAmount = new NumericField("{$name}[Amount]", _t('MoneyField.FIELDLABELAMOUNT', 'Amount')); |
@@ -132,6 +136,7 @@ discard block |
||
| 132 | 136 | /** |
| 133 | 137 | * @todo Implement removal of readonly state with $bool=false |
| 134 | 138 | * @todo Set readonly state whenever field is recreated, e.g. in setAllowedCurrencies() |
| 139 | + * @param boolean $bool |
|
| 135 | 140 | */ |
| 136 | 141 | public function setReadonly($bool) { |
| 137 | 142 | parent::setReadonly($bool); |
@@ -172,6 +177,9 @@ discard block |
||
| 172 | 177 | return $this->allowedCurrencies; |
| 173 | 178 | } |
| 174 | 179 | |
| 180 | + /** |
|
| 181 | + * @param string $locale |
|
| 182 | + */ |
|
| 175 | 183 | public function setLocale($locale) { |
| 176 | 184 | $this->_locale = $locale; |
| 177 | 185 | return $this; |
@@ -89,6 +89,7 @@ |
||
| 89 | 89 | * Determines if the field should render open or closed by default. |
| 90 | 90 | * |
| 91 | 91 | * @param boolean |
| 92 | + * @param boolean $bool |
|
| 92 | 93 | */ |
| 93 | 94 | public function startClosed($bool) { |
| 94 | 95 | ($bool) ? $this->addExtraClass('startClosed') : $this->removeExtraClass('startClosed'); |
@@ -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 |
@@ -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; |
@@ -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 |
@@ -709,7 +709,8 @@ discard block |
||
| 709 | 709 | * Input for langArrayCodeForEntitySpec() should be suitable for insertion |
| 710 | 710 | * into single-quoted strings, so needs to be escaped already. |
| 711 | 711 | * |
| 712 | - * @param string $entity The entity name, e.g. CMSMain.BUTTONSAVE |
|
| 712 | + * @param string $entitySpec The entity name, e.g. CMSMain.BUTTONSAVE |
|
| 713 | + * @param string $locale |
|
| 713 | 714 | */ |
| 714 | 715 | public function langArrayCodeForEntitySpec($entityFullName, $entitySpec, $locale) { |
| 715 | 716 | $php = ''; |
@@ -772,6 +773,11 @@ discard block |
||
| 772 | 773 | return true; |
| 773 | 774 | } |
| 774 | 775 | |
| 776 | + /** |
|
| 777 | + * @param string $locale |
|
| 778 | + * |
|
| 779 | + * @return string |
|
| 780 | + */ |
|
| 775 | 781 | public function getYaml($entities, $locale) { |
| 776 | 782 | // Use the Zend copy of this script to prevent class conflicts when RailsYaml is included |
| 777 | 783 | require_once 'thirdparty/zend_translate_railsyaml/library/Translate/Adapter/thirdparty/sfYaml/lib' |
@@ -846,6 +852,7 @@ discard block |
||
| 846 | 852 | |
| 847 | 853 | /** |
| 848 | 854 | * Parses a template and returns any translatable entities |
| 855 | + * @param string $template |
|
| 849 | 856 | */ |
| 850 | 857 | public static function GetTranslatables($template) { |
| 851 | 858 | self::$entities = array(); |
@@ -47,6 +47,7 @@ discard block |
||
| 47 | 47 | /** |
| 48 | 48 | * Clear the aggregate cache for a given type, or pass nothing to clear all aggregate caches. |
| 49 | 49 | * {@link $class} is just effective if the cache backend supports tags. |
| 50 | + * @param string $class |
|
| 50 | 51 | */ |
| 51 | 52 | public static function flushCache($class=null) { |
| 52 | 53 | $cache = self::cache(); |
@@ -85,7 +86,7 @@ discard block |
||
| 85 | 86 | * Build the SQLSelect to calculate the aggregate |
| 86 | 87 | * This is a seperate function so that subtypes of Aggregate can change just this bit |
| 87 | 88 | * @param string $attr - the SQL field statement for selection (i.e. "MAX(LastUpdated)") |
| 88 | - * @return SQLSelect |
|
| 89 | + * @return DataList |
|
| 89 | 90 | */ |
| 90 | 91 | protected function query($attr) { |
| 91 | 92 | $query = DataList::create($this->type)->where($this->filter); |
@@ -152,7 +152,7 @@ |
||
| 152 | 152 | /** |
| 153 | 153 | * Returns the timestamp of the time that the database was last built |
| 154 | 154 | * |
| 155 | - * @return string Returns the timestamp of the time that the database was |
|
| 155 | + * @return integer|null Returns the timestamp of the time that the database was |
|
| 156 | 156 | * last built |
| 157 | 157 | */ |
| 158 | 158 | public static function lastBuilt() { |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | * Returns a new DataList instance with the specified query parameter assigned |
| 158 | 158 | * |
| 159 | 159 | * @param string|array $keyOrArray Either the single key to set, or an array of key value pairs to set |
| 160 | - * @param mixed $val If $keyOrArray is not an array, this is the value to set |
|
| 160 | + * @param string $val If $keyOrArray is not an array, this is the value to set |
|
| 161 | 161 | * @return DataList |
| 162 | 162 | */ |
| 163 | 163 | public function setDataQueryParam($keyOrArray, $val = null) { |
@@ -616,7 +616,7 @@ discard block |
||
| 616 | 616 | * @param int $order A numerical index to control the order that joins are added to the query; lower order values |
| 617 | 617 | * will cause the query to appear first. The default is 20, and joins created automatically by the |
| 618 | 618 | * ORM have a value of 10. |
| 619 | - * @param array $parameters Any additional parameters if the join is a parameterised subquery |
|
| 619 | + * @param string[] $parameters Any additional parameters if the join is a parameterised subquery |
|
| 620 | 620 | * @return DataList |
| 621 | 621 | */ |
| 622 | 622 | public function innerJoin($table, $onClause, $alias = null, $order = 20, $parameters = array()) { |
@@ -634,7 +634,7 @@ discard block |
||
| 634 | 634 | * @param int $order A numerical index to control the order that joins are added to the query; lower order values |
| 635 | 635 | * will cause the query to appear first. The default is 20, and joins created automatically by the |
| 636 | 636 | * ORM have a value of 10. |
| 637 | - * @param array $parameters Any additional parameters if the join is a parameterised subquery |
|
| 637 | + * @param string[] $parameters Any additional parameters if the join is a parameterised subquery |
|
| 638 | 638 | * @return DataList |
| 639 | 639 | */ |
| 640 | 640 | public function leftJoin($table, $onClause, $alias = null, $order = 20, $parameters = array()) { |
@@ -761,7 +761,7 @@ discard block |
||
| 761 | 761 | * Return the maximum value of the given field in this DataList |
| 762 | 762 | * |
| 763 | 763 | * @param string $fieldName |
| 764 | - * @return mixed |
|
| 764 | + * @return string |
|
| 765 | 765 | */ |
| 766 | 766 | public function max($fieldName) { |
| 767 | 767 | return $this->dataQuery->max($fieldName); |
@@ -771,7 +771,7 @@ discard block |
||
| 771 | 771 | * Return the minimum value of the given field in this DataList |
| 772 | 772 | * |
| 773 | 773 | * @param string $fieldName |
| 774 | - * @return mixed |
|
| 774 | + * @return string |
|
| 775 | 775 | */ |
| 776 | 776 | public function min($fieldName) { |
| 777 | 777 | return $this->dataQuery->min($fieldName); |
@@ -781,7 +781,7 @@ discard block |
||
| 781 | 781 | * Return the average value of the given field in this DataList |
| 782 | 782 | * |
| 783 | 783 | * @param string $fieldName |
| 784 | - * @return mixed |
|
| 784 | + * @return string |
|
| 785 | 785 | */ |
| 786 | 786 | public function avg($fieldName) { |
| 787 | 787 | return $this->dataQuery->avg($fieldName); |
@@ -791,7 +791,7 @@ discard block |
||
| 791 | 791 | * Return the sum of the values of the given field in this DataList |
| 792 | 792 | * |
| 793 | 793 | * @param string $fieldName |
| 794 | - * @return mixed |
|
| 794 | + * @return string |
|
| 795 | 795 | */ |
| 796 | 796 | public function sum($fieldName) { |
| 797 | 797 | return $this->dataQuery->sum($fieldName); |
@@ -843,7 +843,7 @@ discard block |
||
| 843 | 843 | /** |
| 844 | 844 | * Restrict the columns to fetch into this DataList |
| 845 | 845 | * |
| 846 | - * @param array $queriedColumns |
|
| 846 | + * @param string[] $queriedColumns |
|
| 847 | 847 | * @return DataList |
| 848 | 848 | */ |
| 849 | 849 | public function setQueriedColumns($queriedColumns) { |
@@ -1116,7 +1116,7 @@ discard block |
||
| 1116 | 1116 | /** |
| 1117 | 1117 | * Returns item stored in list with index $key |
| 1118 | 1118 | * |
| 1119 | - * @param mixed $key |
|
| 1119 | + * @param integer $key |
|
| 1120 | 1120 | * @return DataObject |
| 1121 | 1121 | */ |
| 1122 | 1122 | public function offsetGet($key) { |