Files
portal-legacy/html/phpmyad/libraries/engines/binlog.lib.php
Chris Sewell cf140a2e97 initial commit
2012-11-28 03:55:08 -05:00

26 lines
430 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* @package PhpMyAdmin-Engines
*/
/**
*
* @package PhpMyAdmin-Engines
*/
class PMA_StorageEngine_binlog extends PMA_StorageEngine
{
/**
* returns string with filename for the MySQL helppage
* about this storage engne
*
* @return string mysql helppage filename
*/
function getMysqlHelpPage()
{
return 'binary-log';
}
}
?>