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:22 +0400
committerRouslan <roccivic@roccivic-pc.(none)>2011-05-21 20:49:22 +0400
commit058b6175c12ac3f9335f369ef2161d93d4cf0e6c (patch)
tree13973f20e610ce6d3bf56d3a7926f4273dd2f6f7 /db_routines.php
parent44301dd2502a409be99dfa34185bcef94d0fbae7 (diff)
Recycled old Routines functionality and linked it to the new entry in the menu
Diffstat (limited to 'db_routines.php')
-rw-r--r--db_routines.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/db_routines.php b/db_routines.php
new file mode 100644
index 0000000000..c47b243f32
--- /dev/null
+++ b/db_routines.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'][] = 'db_routines.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 routines
+ */
+require_once './libraries/db_routines.inc.php';
+
+/**
+ * Displays the footer
+ */
+require './libraries/footer.inc.php';
+
+
+?>