devilbox/.devilbox/www/htdocs/vendor/phpmyadmin-4.9.3/db_sql.php

47 lines
952 B
PHP
Raw Normal View History

2016-10-22 14:57:10 +00:00
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Database SQL executor
*
* @package PhpMyAdmin
*/
2018-04-14 09:18:00 +00:00
use PhpMyAdmin\Config\PageSettings;
use PhpMyAdmin\Response;
use PhpMyAdmin\SqlQueryForm;
2016-10-22 14:57:10 +00:00
/**
*
*/
require_once 'libraries/common.inc.php';
2018-04-14 09:18:00 +00:00
PageSettings::showGroup('Sql');
2016-10-22 14:57:10 +00:00
/**
* Runs common work
*/
$response = Response::getInstance();
2016-10-22 14:57:10 +00:00
$header = $response->getHeader();
$scripts = $header->getScripts();
$scripts->addFile('makegrid.js');
2018-04-14 09:18:00 +00:00
$scripts->addFile('vendor/jquery/jquery.uitablefilter.js');
2016-10-22 14:57:10 +00:00
$scripts->addFile('sql.js');
require 'libraries/db_common.inc.php';
// After a syntax error, we return to this script
// with the typed query in the textarea.
$goto = 'db_sql.php';
$back = 'db_sql.php';
/**
* Query box, bookmark, insert data from textfile
*/
$response->addHTML(
2018-04-14 09:18:00 +00:00
SqlQueryForm::getHtml(
2016-10-22 14:57:10 +00:00
true, false,
2018-12-16 14:31:03 +00:00
isset($_POST['delimiter'])
? htmlspecialchars($_POST['delimiter'])
2016-10-22 14:57:10 +00:00
: ';'
)
);