server_engines.php 615 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * display list of server engines and additional information about them
  5. *
  6. * @package PhpMyAdmin
  7. */
  8. /**
  9. * requirements
  10. */
  11. require_once 'libraries/common.inc.php';
  12. /**
  13. * Does the common work
  14. */
  15. require 'libraries/server_common.inc.php';
  16. require 'libraries/StorageEngine.class.php';
  17. require 'libraries/server_engines.lib.php';
  18. /**
  19. * Displays the sub-page heading
  20. */
  21. $response = PMA_Response::getInstance();
  22. $response->addHTML(PMA_getHtmlForSubPageHeader('engines'));
  23. /**
  24. * start output
  25. */
  26. $response->addHTML(PMA_getHtmlForServerEngines());
  27. exit;
  28. ?>