@@ -297,6 +297,9 @@ discard block |
||
297 | 297 | return $this->printTree($items, $attrs, strtolower($what)); |
298 | 298 | } |
299 | 299 | |
300 | + /** |
|
301 | + * @param boolean $confirm |
|
302 | + */ |
|
300 | 303 | public function doDropConfig($confirm) |
301 | 304 | { |
302 | 305 | $data = $this->misc->getDatabaseAccessor(); |
@@ -327,6 +330,9 @@ discard block |
||
327 | 330 | } |
328 | 331 | } |
329 | 332 | |
333 | + /** |
|
334 | + * @param boolean $confirm |
|
335 | + */ |
|
330 | 336 | public function doDropDict($confirm) |
331 | 337 | { |
332 | 338 | $data = $this->misc->getDatabaseAccessor(); |
@@ -1000,7 +1006,7 @@ discard block |
||
1000 | 1006 | /** |
1001 | 1007 | * Show confirmation of drop and perform actual drop of FTS mapping. |
1002 | 1008 | * |
1003 | - * @param mixed $confirm |
|
1009 | + * @param boolean $confirm |
|
1004 | 1010 | */ |
1005 | 1011 | public function doDropMapping($confirm) |
1006 | 1012 | { |
@@ -183,6 +183,9 @@ discard block |
||
183 | 183 | $this->_printNavLinks('functions-functions'); |
184 | 184 | } |
185 | 185 | |
186 | + /** |
|
187 | + * @param string $place |
|
188 | + */ |
|
186 | 189 | private function _printNavLinks($place, $func_full = '') |
187 | 190 | { |
188 | 191 | if ($place === 'functions-properties') { |
@@ -699,7 +702,7 @@ discard block |
||
699 | 702 | /** |
700 | 703 | * Show confirmation of drop and perform actual drop. |
701 | 704 | * |
702 | - * @param mixed $confirm |
|
705 | + * @param boolean $confirm |
|
703 | 706 | */ |
704 | 707 | public function doDrop($confirm) |
705 | 708 | { |
@@ -776,7 +779,7 @@ discard block |
||
776 | 779 | * Displays a screen where they can enter a new function. |
777 | 780 | * |
778 | 781 | * @param string $msg message to display |
779 | - * @param mixed $szJS |
|
782 | + * @param string $szJS |
|
780 | 783 | */ |
781 | 784 | public function doCreate($msg = '', $szJS = '') |
782 | 785 | { |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | /** |
164 | 164 | * Show confirmation of drop user from group and perform actual drop. |
165 | 165 | * |
166 | - * @param mixed $confirm |
|
166 | + * @param boolean $confirm |
|
167 | 167 | * @param mixed $msg |
168 | 168 | */ |
169 | 169 | public function doDropMember($confirm, $msg = '') |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | /** |
279 | 279 | * Show confirmation of drop and perform actual drop. |
280 | 280 | * |
281 | - * @param mixed $confirm |
|
281 | + * @param boolean $confirm |
|
282 | 282 | */ |
283 | 283 | public function doDrop($confirm) |
284 | 284 | { |
@@ -185,6 +185,9 @@ discard block |
||
185 | 185 | $this->printNavLinks($navlinks, 'history-history', get_defined_vars()); |
186 | 186 | } |
187 | 187 | |
188 | + /** |
|
189 | + * @param boolean $confirm |
|
190 | + */ |
|
188 | 191 | public function doDelHistory($qid, $confirm) |
189 | 192 | { |
190 | 193 | if ($confirm) { |
@@ -209,6 +212,9 @@ discard block |
||
209 | 212 | } |
210 | 213 | } |
211 | 214 | |
215 | + /** |
|
216 | + * @param boolean $confirm |
|
217 | + */ |
|
212 | 218 | public function doClearHistory($confirm) |
213 | 219 | { |
214 | 220 | if ($confirm) { |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | /** |
246 | 246 | * Show confirmation of cluster index and perform actual cluster. |
247 | 247 | * |
248 | - * @param mixed $confirm |
|
248 | + * @param boolean $confirm |
|
249 | 249 | */ |
250 | 250 | public function doClusterIndex($confirm) |
251 | 251 | { |
@@ -484,7 +484,7 @@ discard block |
||
484 | 484 | /** |
485 | 485 | * Show confirmation of drop index and perform actual drop. |
486 | 486 | * |
487 | - * @param mixed $confirm |
|
487 | + * @param boolean $confirm |
|
488 | 488 | */ |
489 | 489 | public function doDropIndex($confirm) |
490 | 490 | { |
@@ -266,7 +266,7 @@ |
||
266 | 266 | /** |
267 | 267 | * Show confirmation of drop and perform actual drop. |
268 | 268 | * |
269 | - * @param mixed $confirm |
|
269 | + * @param boolean $confirm |
|
270 | 270 | */ |
271 | 271 | public function doDrop($confirm) |
272 | 272 | { |
@@ -600,7 +600,7 @@ discard block |
||
600 | 600 | /** |
601 | 601 | * Show confirmation of drop a role and perform actual drop. |
602 | 602 | * |
603 | - * @param mixed $confirm |
|
603 | + * @param boolean $confirm |
|
604 | 604 | */ |
605 | 605 | public function doDrop($confirm) |
606 | 606 | { |
@@ -815,7 +815,7 @@ discard block |
||
815 | 815 | /** |
816 | 816 | * Show confirmation of change password and actually change password. |
817 | 817 | * |
818 | - * @param mixed $confirm |
|
818 | + * @param boolean $confirm |
|
819 | 819 | * @param mixed $msg |
820 | 820 | */ |
821 | 821 | public function doChangePassword($confirm, $msg = '') |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | /** |
150 | 150 | * Confirm and then actually create a rule. |
151 | 151 | * |
152 | - * @param mixed $confirm |
|
152 | + * @param boolean $confirm |
|
153 | 153 | * @param mixed $msg |
154 | 154 | */ |
155 | 155 | public function createRule($confirm, $msg = '') |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | /** |
232 | 232 | * Show confirmation of drop and perform actual drop. |
233 | 233 | * |
234 | - * @param mixed $confirm |
|
234 | + * @param boolean $confirm |
|
235 | 235 | */ |
236 | 236 | public function doDrop($confirm) |
237 | 237 | { |
@@ -401,7 +401,6 @@ discard block |
||
401 | 401 | /** |
402 | 402 | * Save the form submission containing changes to a schema. |
403 | 403 | * |
404 | - * @param mixed $msg |
|
405 | 404 | */ |
406 | 405 | public function doSaveAlter() |
407 | 406 | { |
@@ -419,7 +418,7 @@ discard block |
||
419 | 418 | /** |
420 | 419 | * Show confirmation of drop and perform actual drop. |
421 | 420 | * |
422 | - * @param mixed $confirm |
|
421 | + * @param boolean $confirm |
|
423 | 422 | */ |
424 | 423 | public function doDrop($confirm) |
425 | 424 | { |