@@ -189,8 +189,6 @@ discard block |
||
189 | 189 | /** |
190 | 190 | * Method to facilitate deprecation of underscore-prefixed methods automatically being cached. |
191 | 191 | * |
192 | - * @param string $field |
|
193 | - * @param array $arguments |
|
194 | 192 | * @param string $identifier an optional custom cache identifier |
195 | 193 | * @return unknown |
196 | 194 | */ |
@@ -251,7 +249,7 @@ discard block |
||
251 | 249 | * - castingHelper: the casting helper for casting the field (e.g. "return new Varchar($fieldName)") |
252 | 250 | * |
253 | 251 | * @param string $field |
254 | - * @return array |
|
252 | + * @return string |
|
255 | 253 | */ |
256 | 254 | public function castingHelperPair($field) { |
257 | 255 | Deprecation::notice('2.5', 'use castingHelper() instead'); |
@@ -501,6 +499,7 @@ discard block |
||
501 | 499 | |
502 | 500 | /** |
503 | 501 | * Return the value of a field in an SQL-safe format. |
502 | + * @param string $field |
|
504 | 503 | */ |
505 | 504 | public function SQL_val($field, $arguments = null, $cache = true) { |
506 | 505 | return Convert::raw2sql($this->RAW_val($field, $arguments, $cache)); |
@@ -508,6 +507,7 @@ discard block |
||
508 | 507 | |
509 | 508 | /** |
510 | 509 | * Return the value of a field in a JavaScript-save format. |
510 | + * @param string $field |
|
511 | 511 | */ |
512 | 512 | public function JS_val($field, $arguments = null, $cache = true) { |
513 | 513 | return Convert::raw2js($this->RAW_val($field, $arguments, $cache)); |
@@ -515,6 +515,7 @@ discard block |
||
515 | 515 | |
516 | 516 | /** |
517 | 517 | * Return the value of a field escaped suitable to be inserted into an XML node attribute. |
518 | + * @param string $field |
|
518 | 519 | */ |
519 | 520 | public function ATT_val($field, $arguments = null, $cache = true) { |
520 | 521 | return Convert::raw2att($this->RAW_val($field, $arguments, $cache)); |
@@ -525,7 +526,6 @@ discard block |
||
525 | 526 | /** |
526 | 527 | * Get an array of XML-escaped values by field name |
527 | 528 | * |
528 | - * @param array $elements an array of field names |
|
529 | 529 | * @return array |
530 | 530 | */ |
531 | 531 | public function getXMLValues($fields) { |
@@ -36,6 +36,9 @@ |
||
36 | 36 | |
37 | 37 | protected $whitelist = false; |
38 | 38 | |
39 | + /** |
|
40 | + * @param string $name |
|
41 | + */ |
|
39 | 42 | public function __construct($name = null, $options = array()) { |
40 | 43 | if(is_string($options)) { |
41 | 44 | $options = array('whitelist' => $options); |
@@ -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); |
@@ -97,6 +97,9 @@ |
||
97 | 97 | return $return; |
98 | 98 | } |
99 | 99 | |
100 | + /** |
|
101 | + * @param boolean $index |
|
102 | + */ |
|
100 | 103 | function f($index) { |
101 | 104 | return stripslashes($this->row[$index]); |
102 | 105 | } |
@@ -162,7 +162,7 @@ |
||
162 | 162 | * @param string $mode clean mode |
163 | 163 | * @param array $tags array of tags |
164 | 164 | * @throws Zend_Cache_Exception |
165 | - * @return boolean true if no problem |
|
165 | + * @return boolean|null true if no problem |
|
166 | 166 | */ |
167 | 167 | public function clean($mode = Zend_Cache::CLEANING_MODE_ALL, $tags = array()) |
168 | 168 | { |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @param string $locale Locale/Language to add data for, identical with locale identifier, |
49 | 49 | * see Zend_Locale for more information |
50 | 50 | * @param string $filename XMLTM file to add, full path must be given for access |
51 | - * @param array $option OPTIONAL Options to use |
|
51 | + * @param array $options OPTIONAL Options to use |
|
52 | 52 | * @throws Zend_Translation_Exception |
53 | 53 | * @return array |
54 | 54 | */ |
@@ -116,6 +116,9 @@ discard block |
||
116 | 116 | } |
117 | 117 | } |
118 | 118 | |
119 | + /** |
|
120 | + * @param string $filename |
|
121 | + */ |
|
119 | 122 | private function _findEncoding($filename) |
120 | 123 | { |
121 | 124 | $file = file_get_contents($filename, null, null, 0, 100); |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @param string $locale Locale/Language to add data for, identical with locale identifier, |
49 | 49 | * see Zend_Locale for more information |
50 | 50 | * @param string $filename XMLTM file to add, full path must be given for access |
51 | - * @param array $option OPTIONAL Options to use |
|
51 | + * @param array $options OPTIONAL Options to use |
|
52 | 52 | * @throws Zend_Translation_Exception |
53 | 53 | * @return array |
54 | 54 | */ |
@@ -116,6 +116,9 @@ discard block |
||
116 | 116 | } |
117 | 117 | } |
118 | 118 | |
119 | + /** |
|
120 | + * @param string $filename |
|
121 | + */ |
|
119 | 122 | private function _findEncoding($filename) |
120 | 123 | { |
121 | 124 | $file = file_get_contents($filename, null, null, 0, 100); |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @param string $locale Locale/Language to add data for, identical with locale identifier, |
49 | 49 | * see Zend_Locale for more information |
50 | 50 | * @param string $filename XMLTM file to add, full path must be given for access |
51 | - * @param array $option OPTIONAL Options to use |
|
51 | + * @param array $options OPTIONAL Options to use |
|
52 | 52 | * @throws Zend_Translation_Exception |
53 | 53 | * @return array |
54 | 54 | */ |
@@ -116,6 +116,9 @@ discard block |
||
116 | 116 | } |
117 | 117 | } |
118 | 118 | |
119 | + /** |
|
120 | + * @param string $filename |
|
121 | + */ |
|
119 | 122 | private function _findEncoding($filename) |
120 | 123 | { |
121 | 124 | $file = file_get_contents($filename, null, null, 0, 100); |
@@ -562,6 +562,9 @@ |
||
562 | 562 | } |
563 | 563 | } |
564 | 564 | |
565 | + /** |
|
566 | + * @param string $type |
|
567 | + */ |
|
565 | 568 | public function assertFileNotIncluded($backend, $type, $files) { |
566 | 569 | $includedFiles = $this->getBackendFiles($backend, $type); |
567 | 570 | if(is_array($files)) { |