Binlog.php 542 B

123456789101112131415161718192021222324252627282930
  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. namespace PhpMyAdmin\Engines;
  9. use PhpMyAdmin\StorageEngine;
  10. /**
  11. * The binary log storage engine
  12. *
  13. * @package PhpMyAdmin-Engines
  14. */
  15. class Binlog extends StorageEngine
  16. {
  17. /**
  18. * Returns string with filename for the MySQL helppage
  19. * about this storage engine
  20. *
  21. * @return string mysql helppage filename
  22. */
  23. public function getMysqlHelpPage()
  24. {
  25. return 'binary-log';
  26. }
  27. }