mirror of
https://github.com/YunoHost-Apps/phpmyadmin_ynh.git
synced 2024-09-03 19:56:46 +02:00
32 lines
577 B
PHP
32 lines
577 B
PHP
|
<?php
|
||
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||
|
/**
|
||
|
* Server SQL executor
|
||
|
*
|
||
|
* @package PhpMyAdmin
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
require_once 'libraries/common.inc.php';
|
||
|
|
||
|
/**
|
||
|
* Does the common work
|
||
|
*/
|
||
|
$response = PMA_Response::getInstance();
|
||
|
$header = $response->getHeader();
|
||
|
$scripts = $header->getScripts();
|
||
|
$scripts->addFile('makegrid.js');
|
||
|
$scripts->addFile('sql.js');
|
||
|
|
||
|
require_once 'libraries/server_common.inc.php';
|
||
|
require_once 'libraries/sql_query_form.lib.php';
|
||
|
|
||
|
/**
|
||
|
* Query box, bookmark, insert data from textfile
|
||
|
*/
|
||
|
$response->addHTML(PMA_getHtmlForSqlQueryForm());
|
||
|
|
||
|
?>
|