From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- .../libraries/classes/Plugins/SchemaPlugin.php | 90 ---------------------- 1 file changed, 90 deletions(-) delete mode 100644 srcs/phpmyadmin/libraries/classes/Plugins/SchemaPlugin.php (limited to 'srcs/phpmyadmin/libraries/classes/Plugins/SchemaPlugin.php') diff --git a/srcs/phpmyadmin/libraries/classes/Plugins/SchemaPlugin.php b/srcs/phpmyadmin/libraries/classes/Plugins/SchemaPlugin.php deleted file mode 100644 index 12cbd40..0000000 --- a/srcs/phpmyadmin/libraries/classes/Plugins/SchemaPlugin.php +++ /dev/null @@ -1,90 +0,0 @@ -properties; - } - - /** - * Sets the export plugins properties and is implemented by - * each schema export plugin - * - * @return void - */ - abstract protected function setProperties(); - - /** - * Exports the schema into the specified format. - * - * @param string $db database name - * - * @return bool Whether it succeeded - */ - abstract public function exportSchema($db); - - /** - * Adds export options common to all plugins. - * - * @param OptionsPropertyMainGroup $propertyGroup property group - * - * @return void - */ - protected function addCommonOptions(OptionsPropertyMainGroup $propertyGroup) - { - $leaf = new BoolPropertyItem('show_color', __('Show color')); - $propertyGroup->addProperty($leaf); - $leaf = new BoolPropertyItem('show_keys', __('Only show keys')); - $propertyGroup->addProperty($leaf); - } - - /** - * Returns the array of paper sizes - * - * @return array array of paper sizes - */ - protected function getPaperSizeArray() - { - $ret = []; - foreach ($GLOBALS['cfg']['PDFPageSizes'] as $val) { - $ret[$val] = $val; - } - - return $ret; - } -} -- cgit