Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRouslan <roccivic@roccivic-pc.(none)>2011-05-21 20:49:58 +0400
committerRouslan <roccivic@roccivic-pc.(none)>2011-05-21 20:49:58 +0400
commitd3210ef1b67b91a7668c7c55aad909592b558a06 (patch)
tree3aeead8cc3a797e684920eec6a8a87dd0bed33ae /db_triggers.php
parent058b6175c12ac3f9335f369ef2161d93d4cf0e6c (diff)
Recycled old Triggers functionality and linked it to the new entry in the menu
Diffstat (limited to 'db_triggers.php')
-rw-r--r--db_triggers.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/db_triggers.php b/db_triggers.php
new file mode 100644
index 0000000000..3a358cc462
--- /dev/null
+++ b/db_triggers.php
@@ -0,0 +1,40 @@
+<?php
+
+/**
+ *
+ */
+require_once './libraries/common.inc.php';
+
+$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
+$GLOBALS['js_include'][] = 'display_triggers.js';
+
+require_once './libraries/common.lib.php';
+require_once './libraries/db_common.inc.php';
+
+/**
+ * Create labels for the list
+ */
+$titles = PMA_buildActionTitles();
+
+/**
+ * Displays the header
+ */
+require_once './libraries/header.inc.php';
+
+/**
+ * Displays the tabs
+ */
+require_once './libraries/db_links.inc.php';
+
+/**
+ * Displays the list of triggers
+ */
+require_once './libraries/display_triggers.inc.php';
+
+/**
+ * Displays the footer
+ */
+require './libraries/footer.inc.php';
+
+
+?>