@@ -72,7 +72,7 @@ |
||
72 | 72 | * @deprecated |
73 | 73 | * |
74 | 74 | * @param $rs |
75 | - * @return int|mixed |
|
75 | + * @return integer |
|
76 | 76 | */ |
77 | 77 | public function insertId($rs) |
78 | 78 | { |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | /** |
95 | 95 | * @param string $mode |
96 | 96 | * @param string $modifiers |
97 | - * @return bool|string |
|
97 | + * @return false|string |
|
98 | 98 | */ |
99 | 99 | public function _getDelim($mode,$modifiers) { |
100 | 100 | $c = substr($modifiers,0,1); |
@@ -131,6 +131,14 @@ discard block |
||
131 | 131 | return $opt; |
132 | 132 | } |
133 | 133 | } |
134 | + |
|
135 | + /** |
|
136 | + * @param string $mode |
|
137 | + * @param false|string $delim |
|
138 | + * @param string $modifiers |
|
139 | + * |
|
140 | + * @return string |
|
141 | + */ |
|
134 | 142 | public function _getRemainModifiers($mode,$delim,$modifiers) { |
135 | 143 | if($delim) { |
136 | 144 | if($mode=='(') |
@@ -158,6 +166,9 @@ discard block |
||
158 | 166 | return substr($string,strpos($string, $delim)+$len); |
159 | 167 | } |
160 | 168 | |
169 | + /** |
|
170 | + * @param string $modifiers |
|
171 | + */ |
|
161 | 172 | public function splitEachModifiers($modifiers) { |
162 | 173 | $modx = DocumentParser::getInstance(); |
163 | 174 | |
@@ -227,6 +238,10 @@ discard block |
||
227 | 238 | return $result; |
228 | 239 | } |
229 | 240 | |
241 | + /** |
|
242 | + * @param string $key |
|
243 | + * @param string $value |
|
244 | + */ |
|
230 | 245 | public function parsePhx($key,$value,$modifiers) |
231 | 246 | { |
232 | 247 | $modx = DocumentParser::getInstance(); |
@@ -293,6 +308,10 @@ discard block |
||
293 | 308 | else return true; |
294 | 309 | } |
295 | 310 | |
311 | + /** |
|
312 | + * @param string $cmd |
|
313 | + * @param string $opt |
|
314 | + */ |
|
296 | 315 | public function getValueFromPreset($key, $value, $cmd, $opt) |
297 | 316 | { |
298 | 317 | $modx = DocumentParser::getInstance(); |
@@ -978,6 +997,9 @@ discard block |
||
978 | 997 | return $value; |
979 | 998 | } |
980 | 999 | |
1000 | + /** |
|
1001 | + * @param string $cmd |
|
1002 | + */ |
|
981 | 1003 | public function includeMdfFile($cmd) { |
982 | 1004 | $modx = DocumentParser::getInstance(); |
983 | 1005 | $key = $this->key; |
@@ -1133,6 +1155,10 @@ discard block |
||
1133 | 1155 | } |
1134 | 1156 | |
1135 | 1157 | // Sets a placeholder variable which can only be access by Modifiers |
1158 | + |
|
1159 | + /** |
|
1160 | + * @param string $value |
|
1161 | + */ |
|
1136 | 1162 | public function setModifiersVariable($key, $value) { |
1137 | 1163 | if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value; |
1138 | 1164 | } |