performance_schema.lib.php 493 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * @package PhpMyAdmin-Engines
  5. */
  6. if (! defined('PHPMYADMIN')) {
  7. exit;
  8. }
  9. /**
  10. *
  11. * @package PhpMyAdmin-Engines
  12. */
  13. class PMA_StorageEngine_performance_schema extends PMA_StorageEngine
  14. {
  15. /**
  16. * returns string with filename for the MySQL helppage
  17. * about this storage engine
  18. *
  19. * @return string mysql helppage filename
  20. */
  21. function getMysqlHelpPage()
  22. {
  23. return 'performance-schema';
  24. }
  25. }
  26. ?>