binlog.lib.php 549 B

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