Files
phpmyadmin/libraries/engines/binlog.lib.php
2010-07-23 21:59:15 +05:30

26 lines
430 B
PHP
Executable File

<?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';
}
}
?>