1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpmyadmin_ynh.git synced 2024-09-03 19:56:46 +02:00
phpmyadmin_ynh/sources/server_engines.php

35 lines
615 B
PHP
Raw Normal View History

2014-01-14 12:28:06 +01:00
<?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;
?>