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/Display/CreateTable.php | 56 ---------------------- 1 file changed, 56 deletions(-) delete mode 100644 srcs/phpmyadmin/libraries/classes/Display/CreateTable.php (limited to 'srcs/phpmyadmin/libraries/classes/Display/CreateTable.php') diff --git a/srcs/phpmyadmin/libraries/classes/Display/CreateTable.php b/srcs/phpmyadmin/libraries/classes/Display/CreateTable.php deleted file mode 100644 index d984e55..0000000 --- a/srcs/phpmyadmin/libraries/classes/Display/CreateTable.php +++ /dev/null @@ -1,56 +0,0 @@ -= 4.1.0, we should be able to detect if user has a CREATE - * privilege by looking at SHOW GRANTS output; - * for < 4.1.0, it could be more difficult because the logic tries to - * detect the current host and it might be expressed in many ways; also - * on a shared server, the user might be unable to define a controluser - * that has the proper rights to the "mysql" db; - * so we give up and assume that user has the right to create a table - * - * Note: in this case we could even skip the following "foreach" logic - * - * Addendum, 2006-01-19: ok, I give up. We got some reports about servers - * where the hostname field in mysql.user is not the same as the one - * in mysql.db for a user. In this case, SHOW GRANTS does not return - * the db-specific privileges. And probably, those users are on a shared - * server, so can't set up a control user with rights to the "mysql" db. - * We cannot reliably detect the db-specific privileges, so no more - * warnings about the lack of privileges for CREATE TABLE. Tested - * on MySQL 5.0.18. - * - * @package PhpMyAdmin - */ -declare(strict_types=1); - -namespace PhpMyAdmin\Display; - -use PhpMyAdmin\CheckUserPrivileges; -use PhpMyAdmin\Template; - -/** - * PhpMyAdmin\Display\CreateTable class - * - * @package PhpMyAdmin - */ -class CreateTable -{ - /** - * Returns the html for create table. - * - * @param string $db database name - * - * @return string - */ - public static function getHtml($db) - { - $checkUserPrivileges = new CheckUserPrivileges($GLOBALS['dbi']); - $checkUserPrivileges->getPrivileges(); - - $template = new Template(); - return $template->render('database/create_table', ['db' => $db]); - } -} -- cgit