@@ -542,8 +542,6 @@ discard block |
||
| 542 | 542 | * persist changes in autovacuum settings. |
| 543 | 543 | * |
| 544 | 544 | * @param mixed $type |
| 545 | - * @param mixed $confirm |
|
| 546 | - * @param mixed $msg |
|
| 547 | 545 | */ |
| 548 | 546 | public function doEditAutovacuum($type) |
| 549 | 547 | { |
@@ -688,6 +686,10 @@ discard block |
||
| 688 | 686 | $this->_printAutoVacuumConf($data, $type); |
| 689 | 687 | } |
| 690 | 688 | |
| 689 | + /** |
|
| 690 | + * @param string $action |
|
| 691 | + * @param string $type |
|
| 692 | + */ |
|
| 691 | 693 | public function adminActions($action, $type) |
| 692 | 694 | { |
| 693 | 695 | if ('database' == $type) { |
@@ -764,6 +766,9 @@ discard block |
||
| 764 | 766 | return true; |
| 765 | 767 | } |
| 766 | 768 | |
| 769 | + /** |
|
| 770 | + * @param string $table_hidden_inputs |
|
| 771 | + */ |
|
| 767 | 772 | private function _getReclusterConf($data, $type, $table_hidden_inputs) |
| 768 | 773 | { |
| 769 | 774 | if (!$data->hasRecluster()) { |
@@ -923,11 +928,20 @@ discard block |
||
| 923 | 928 | |
| 924 | 929 | abstract public function printTrail($trail = [], $do_print = true); |
| 925 | 930 | |
| 931 | + /** |
|
| 932 | + * @param string $help |
|
| 933 | + */ |
|
| 926 | 934 | abstract public function printTitle($title, $help = null, $do_print = true); |
| 927 | 935 | |
| 928 | 936 | abstract public function printMsg($msg, $do_print = true); |
| 929 | 937 | |
| 938 | + /** |
|
| 939 | + * @param string $activetab |
|
| 940 | + */ |
|
| 930 | 941 | abstract public function printTabs($tabs, $activetab, $do_print = true); |
| 931 | 942 | |
| 943 | + /** |
|
| 944 | + * @param string $place |
|
| 945 | + */ |
|
| 932 | 946 | abstract public function printTable(&$tabledata, &$columns, &$actions, $place, $nodata = '', $pre_fn = null); |
| 933 | 947 | } |