@@ -50,6 +50,7 @@ discard block |
||
50 | 50 | * |
51 | 51 | * By default, this is set to true so that it's clearer what's happening, but the predefined |
52 | 52 | * {@link GridFieldConfig} subclasses set this to false for flexibility. |
53 | + * @param boolean $throwExceptionOnBadDataType |
|
53 | 54 | */ |
54 | 55 | public function setThrowExceptionOnBadDataType($throwExceptionOnBadDataType) { |
55 | 56 | $this->throwExceptionOnBadDataType = $throwExceptionOnBadDataType; |
@@ -65,6 +66,7 @@ discard block |
||
65 | 66 | /** |
66 | 67 | * Check that this dataList is of the right data type. |
67 | 68 | * Returns false if it's a bad data type, and if appropriate, throws an exception. |
69 | + * @param SS_List $dataList |
|
68 | 70 | */ |
69 | 71 | protected function checkDataType($dataList) { |
70 | 72 | if($dataList instanceof SS_Limitable) { |
@@ -29,6 +29,7 @@ discard block |
||
29 | 29 | * |
30 | 30 | * By default, this is set to true so that it's clearer what's happening, but the predefined |
31 | 31 | * {@link GridFieldConfig} subclasses set this to false for flexibility. |
32 | + * @param boolean $throwExceptionOnBadDataType |
|
32 | 33 | */ |
33 | 34 | public function setThrowExceptionOnBadDataType($throwExceptionOnBadDataType) { |
34 | 35 | $this->throwExceptionOnBadDataType = $throwExceptionOnBadDataType; |
@@ -61,7 +62,7 @@ discard block |
||
61 | 62 | * Specify sortings with fieldname as the key, and actual fieldname to sort as value. |
62 | 63 | * Example: array("MyCustomTitle"=>"Title", "MyCustomBooleanField" => "ActualBooleanField") |
63 | 64 | * |
64 | - * @param array $casting |
|
65 | + * @param array $sorting |
|
65 | 66 | */ |
66 | 67 | public function setFieldSorting($sorting) { |
67 | 68 | $this->fieldSorting = $sorting; |
@@ -24,8 +24,7 @@ |
||
24 | 24 | |
25 | 25 | /** |
26 | 26 | * |
27 | - * @param GridField $name |
|
28 | - * @param string $data - json encoded string |
|
27 | + * @param GridField $grid |
|
29 | 28 | */ |
30 | 29 | public function __construct($grid, $value = null) { |
31 | 30 | $this->grid = $grid; |
@@ -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 | */ |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | |
119 | 119 | /** |
120 | 120 | * Return an instance of the cache used for i18n data. |
121 | - * @return Zend_Cache |
|
121 | + * @return Zend_Cache_Core |
|
122 | 122 | */ |
123 | 123 | public static function get_cache() { |
124 | 124 | return SS_Cache::factory('i18n', 'Output', array('lifetime' => null, 'automatic_serialization' => true)); |
@@ -2156,6 +2156,7 @@ discard block |
||
2156 | 2156 | |
2157 | 2157 | /** |
2158 | 2158 | * @param String |
2159 | + * @param string $name |
|
2159 | 2160 | * @return Zend_Translate |
2160 | 2161 | */ |
2161 | 2162 | public static function get_translator($name) { |
@@ -2169,6 +2170,7 @@ discard block |
||
2169 | 2170 | * @param Zend_Translate Needs to implement {@link i18nTranslateAdapterInterface} |
2170 | 2171 | * @param String If left blank will override the default translator. |
2171 | 2172 | * @param Int |
2173 | + * @param string $name |
|
2172 | 2174 | */ |
2173 | 2175 | public static function register_translator($translator, $name, $priority = 10) { |
2174 | 2176 | if (!is_int($priority)) throw new InvalidArgumentException("register_translator expects an int priority"); |
@@ -2298,7 +2300,7 @@ discard block |
||
2298 | 2300 | * |
2299 | 2301 | * @see get_locale_name() |
2300 | 2302 | * |
2301 | - * @param mixed $code Language code |
|
2303 | + * @param string $code Language code |
|
2302 | 2304 | * @param boolean $native If true, the native name will be returned |
2303 | 2305 | * @return Name of the language |
2304 | 2306 | */ |
@@ -2455,6 +2457,7 @@ discard block |
||
2455 | 2457 | * |
2456 | 2458 | * Note: Does not check for {@link $allowed_locales}. |
2457 | 2459 | * |
2460 | + * @param string $locale |
|
2458 | 2461 | * @return boolean |
2459 | 2462 | */ |
2460 | 2463 | public static function validate_locale($locale) { |
@@ -712,7 +712,8 @@ discard block |
||
712 | 712 | * Input for langArrayCodeForEntitySpec() should be suitable for insertion |
713 | 713 | * into single-quoted strings, so needs to be escaped already. |
714 | 714 | * |
715 | - * @param string $entity The entity name, e.g. CMSMain.BUTTONSAVE |
|
715 | + * @param string $entitySpec The entity name, e.g. CMSMain.BUTTONSAVE |
|
716 | + * @param string $locale |
|
716 | 717 | */ |
717 | 718 | public function langArrayCodeForEntitySpec($entityFullName, $entitySpec, $locale) { |
718 | 719 | $php = ''; |
@@ -775,6 +776,9 @@ discard block |
||
775 | 776 | return true; |
776 | 777 | } |
777 | 778 | |
779 | + /** |
|
780 | + * @param string $locale |
|
781 | + */ |
|
778 | 782 | public function getYaml($entities, $locale) { |
779 | 783 | // Unflatten array |
780 | 784 | $entitiesNested = array(); |
@@ -843,6 +847,7 @@ discard block |
||
843 | 847 | |
844 | 848 | /** |
845 | 849 | * Parses a template and returns any translatable entities |
850 | + * @param string $template |
|
846 | 851 | */ |
847 | 852 | public static function GetTranslatables($template) { |
848 | 853 | self::$entities = array(); |
@@ -177,6 +177,10 @@ discard block |
||
177 | 177 | $this->addFilters($this->_options['filters']); |
178 | 178 | } |
179 | 179 | |
180 | + /** |
|
181 | + * @param string $class |
|
182 | + * @param string $var |
|
183 | + */ |
|
180 | 184 | static function &getStaticProperty($class, $var) |
181 | 185 | { |
182 | 186 | static $properties; |
@@ -406,6 +410,7 @@ discard block |
||
406 | 410 | * array as an associative array. |
407 | 411 | * |
408 | 412 | * @param string string to build tag from |
413 | + * @param string $str |
|
409 | 414 | * @return array tag in array format |
410 | 415 | * @access private |
411 | 416 | * @see _buildTagArray() |
@@ -840,7 +845,7 @@ discard block |
||
840 | 845 | /** |
841 | 846 | * Quick method to do setText(), parse() and getParsed at once |
842 | 847 | * |
843 | - * @return none |
|
848 | + * @return string |
|
844 | 849 | * @access public |
845 | 850 | * @see parse() |
846 | 851 | * @see $_text |
@@ -856,7 +861,7 @@ discard block |
||
856 | 861 | /** |
857 | 862 | * Quick static method to do setText(), parse() and getParsed at once |
858 | 863 | * |
859 | - * @return none |
|
864 | + * @return string |
|
860 | 865 | * @access public |
861 | 866 | * @see parse() |
862 | 867 | * @see $_text |
@@ -152,6 +152,9 @@ discard block |
||
152 | 152 | |
153 | 153 | // -------------------------------------------------------------------------------------------------------------- |
154 | 154 | |
155 | + /** |
|
156 | + * @param DOMElement $node |
|
157 | + */ |
|
155 | 158 | protected function removeNode($node) { |
156 | 159 | $node->parentNode->removeChild($node); |
157 | 160 | } |
@@ -167,6 +170,9 @@ discard block |
||
167 | 170 | } |
168 | 171 | } |
169 | 172 | |
173 | + /** |
|
174 | + * @param DOMElement $after |
|
175 | + */ |
|
170 | 176 | protected function insertListAfter($new, $after) { |
171 | 177 | $doc = $after->ownerDocument; $parent = $after->parentNode; $next = $after->nextSibling; |
172 | 178 | |
@@ -347,6 +353,7 @@ discard block |
||
347 | 353 | * |
348 | 354 | * @param string $content - The HTML string with [tag] style shortcodes embedded |
349 | 355 | * @param array $tags - The tags extracted by extractTags |
356 | + * @param Closure $generator |
|
350 | 357 | * @return string - The HTML string with [tag] style shortcodes replaced by markers |
351 | 358 | */ |
352 | 359 | protected function replaceTagsWithText($content, $tags, $generator) { |
@@ -379,7 +386,6 @@ discard block |
||
379 | 386 | * We don't use markers with attributes because there's no point, it's easier to do all the matching |
380 | 387 | * in-DOM after the XML parse |
381 | 388 | * |
382 | - * @param DOMDocument $doc |
|
383 | 389 | */ |
384 | 390 | protected function replaceAttributeTagsWithContent($htmlvalue) { |
385 | 391 | $attributes = $htmlvalue->query('//@*[contains(.,"[")][contains(.,"]")]'); |