summaryrefslogtreecommitdiff
path: root/hugo/libraries/engines/binlog.lib.php
diff options
context:
space:
mode:
Diffstat (limited to 'hugo/libraries/engines/binlog.lib.php')
-rw-r--r--hugo/libraries/engines/binlog.lib.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/hugo/libraries/engines/binlog.lib.php b/hugo/libraries/engines/binlog.lib.php
new file mode 100644
index 0000000..e6a4df0
--- /dev/null
+++ b/hugo/libraries/engines/binlog.lib.php
@@ -0,0 +1,32 @@
+<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * @package PhpMyAdmin-Engines
+ */
+if (! defined('PHPMYADMIN')) {
+ exit;
+}
+
+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
+ */
+ function getMysqlHelpPage()
+ {
+ return 'binary-log';
+ }
+}
+
+?>