mirror of
https://github.com/YunoHost-Apps/phpmyadmin_ynh.git
synced 2024-09-03 19:56:46 +02:00
35 lines
615 B
PHP
35 lines
615 B
PHP
|
<?php
|
||
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||
|
/**
|
||
|
* display list of server engines and additional information about them
|
||
|
*
|
||
|
* @package PhpMyAdmin
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* requirements
|
||
|
*/
|
||
|
require_once 'libraries/common.inc.php';
|
||
|
|
||
|
/**
|
||
|
* Does the common work
|
||
|
*/
|
||
|
require 'libraries/server_common.inc.php';
|
||
|
require 'libraries/StorageEngine.class.php';
|
||
|
require 'libraries/server_engines.lib.php';
|
||
|
|
||
|
/**
|
||
|
* Displays the sub-page heading
|
||
|
*/
|
||
|
$response = PMA_Response::getInstance();
|
||
|
$response->addHTML(PMA_getHtmlForSubPageHeader('engines'));
|
||
|
|
||
|
/**
|
||
|
* start output
|
||
|
*/
|
||
|
$response->addHTML(PMA_getHtmlForServerEngines());
|
||
|
|
||
|
exit;
|
||
|
|
||
|
?>
|