1). Microhistory added in classes for modular code 2). Code is structured and camel casing of varables is done for removing linter warnings. 3). JQuery plugins are added in some files. 4). jQplot is working for server_status_queries and server_status_monitor. 5). Work started for Dabatase, SQl and Table files. Some changes are stll left for server_status_monitor and sql.js Signed-Off-By: Piyush Vijay <piyushvijay.1997@gmail.com>
39 lines
765 B
PHP
39 lines
765 B
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* Server SQL executor
|
|
*
|
|
* @package PhpMyAdmin
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use PhpMyAdmin\Config\PageSettings;
|
|
use PhpMyAdmin\Response;
|
|
use PhpMyAdmin\SqlQueryForm;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
require_once 'libraries/common.inc.php';
|
|
|
|
PageSettings::showGroup('Sql');
|
|
|
|
/**
|
|
* Does the common work
|
|
*/
|
|
$response = Response::getInstance();
|
|
$header = $response->getHeader();
|
|
$scripts = $header->getScripts();
|
|
// $scripts->addFile('makegrid.js');
|
|
// $scripts->addFile('vendor/jquery/jquery.uitablefilter.js');
|
|
$scripts->addFile('sql');
|
|
|
|
require_once 'libraries/server_common.inc.php';
|
|
|
|
$sqlQueryForm = new SqlQueryForm();
|
|
|
|
/**
|
|
* Query box, bookmark, insert data from textfile
|
|
*/
|
|
$response->addHTML($sqlQueryForm->getHtml());
|