phpmyadmin/libraries/engines/binlog.lib.php
Madhura Jayaratne cfcfbded37 Specify visibility
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
2013-12-19 20:25:53 +05:30

29 lines
480 B
PHP

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