binlog.lib.php 517 B

1234567891011121314151617181920212223242526272829303132
  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. if (! defined('PHPMYADMIN')) {
  10. exit;
  11. }
  12. /**
  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. function getMysqlHelpPage()
  25. {
  26. return 'binary-log';
  27. }
  28. }
  29. ?>