PageRenderTime 50ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/phpmyadmin/libraries/engines/binlog.lib.php

https://bitbucket.org/adarshj/convenient_website
PHP | 25 lines | 9 code | 2 blank | 14 comment | 0 complexity | bf3bb033512077094c2675416cf50e49 MD5 | raw file
Possible License(s): Apache-2.0, MPL-2.0-no-copyleft-exception, LGPL-2.1, BSD-2-Clause, GPL-2.0, LGPL-3.0
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * @package PhpMyAdmin-Engines
  5. */
  6. /**
  7. *
  8. * @package PhpMyAdmin-Engines
  9. */
  10. class PMA_StorageEngine_binlog extends PMA_StorageEngine
  11. {
  12. /**
  13. * returns string with filename for the MySQL helppage
  14. * about this storage engne
  15. *
  16. * @return string mysql helppage filename
  17. */
  18. function getMysqlHelpPage()
  19. {
  20. return 'binary-log';
  21. }
  22. }
  23. ?>