PluginProbe
WP-DBManager / 2.00
WP-DBManager v2.00
4.0.0 trunk 1.00 2.00 2.01 2.02 2.03 2.04 2.05 2.10 2.11 2.20 2.30 2.31 2.40 2.50 2.65 2.70 2.71 2.72 2.73 2.74 2.75 2.76 2.78 All 40 releases
wp-dbmanager / dbmanager.php

dbmanager.php in WP-DBManager 2.00, at dbmanager.php

36 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: WP-DBManager
4 Plugin URI: http://www.lesterchan.net/portfolio/programming.php
5 Description: Manages your Wordpress database. Allows you to optimizee, backup, restore, delete backup database and run selected queries.
6 Version: 2.00
7 Author: GaMerZ
8 Author URI: http://www.lesterchan.net
9 */
10
11
12 /* Copyright 2005 Lester Chan (email : gamerz84@hotmail.com)
13
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 2 of the License, or
17 (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 */
28
29 ### Function: Poll Menu
30 add_action('admin_menu', 'dbmanager_menu');
31 function dbmanager_menu() {
32 if (function_exists('add_menu_page')) {
33 add_menu_page('Database', 'Database', 1, 'database-manager.php');
34 }
35 }
36 ?>