Rev | Author | Line No. | Line |
---|---|---|---|
250 | kaklik | 1 | <?php |
2 | /* $Id: binlog.lib.php,v 1.1 2005/12/07 10:55:34 cybot_tm Exp $ */ |
||
3 | // vim: expandtab sw=4 ts=4 sts=4: |
||
4 | |||
5 | class PMA_StorageEngine_binlog extends PMA_StorageEngine |
||
6 | { |
||
7 | /** |
||
8 | * returns string with filename for the MySQL helppage |
||
9 | * about this storage engne |
||
10 | * |
||
11 | * @return string mysql helppage filename |
||
12 | */ |
||
13 | function getMysqlHelpPage() |
||
14 | { |
||
15 | return 'binary-log'; |
||
16 | } |
||
17 | } |
||
18 | |||
19 | ?> |