A lot while() conditions rewritten to SQL_FETCHARRAY(), see bug #107, @TODO tags...
[mailer.git] / inc / modules / admin / what-repair_amenu.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/25/2004 *
4  * ================                             Last change: 02/25/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-repair_amenu.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Repair admin menu weight                         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Menuegewichtigung reparieren                     *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
42
43 $ACTIONS = array();
44
45 // First fix all main menus (what="")...
46 $result_fix = SQL_QUERY("SELECT id, action FROM `{!_MYSQL_PREFIX!}_admin_menu` WHERE (what='' OR `what` IS NULL) AND action != 'logout' ORDER BY `sort` ASC", __FILE__, __LINE__);
47 $cnt = 0; $REP = 0;
48 while ($content = SQL_FETCHARRAY($result_fix)) {
49         // Store act value for later usage in sorting sub menus
50         $ACTIONS[] = $content['action'];
51
52         // Fix weight
53         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_admin_menu` SET sort=%s WHERE id=%s LIMIT 1",
54                 array($cnt, $content['id']), __FILE__, __LINE__);
55         $REP += SQL_AFFECTEDROWS();
56
57         // Count one up
58         $cnt++;
59 }
60
61 // Set logout weight to 999
62 SQL_QUERY("UPDATE `{!_MYSQL_PREFIX!}_admin_menu` SET `sort`='999' WHERE `action`='logout' AND (what='' OR `what` IS NULL) LIMIT 1", __FILE__, __LINE__);
63
64 // Now sort every each menu
65 foreach ($ACTIONS as $act) {
66         $result_fix = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_admin_menu` WHERE `action`='%s' AND `what` != '' AND `what` IS NOT NULL ORDER BY `sort`",
67                 array($act), __FILE__, __LINE__);
68         $cnt = 1;
69         while ($content = SQL_FETCHARRAY($result_fix)) {
70                 // Fix weight
71                 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_admin_menu` SET sort=%s WHERE id=%s LIMIT 1",
72                         array($cnt, $content['id']), __FILE__, __LINE__);
73                 $REP += SQL_AFFECTEDROWS();
74
75                 // Count one up
76                 $cnt++;
77         }
78 }
79
80 // @TODO This causes the whole (!) menu cache being rebuilded
81 CACHE_PURGE_ADMIN_MENU();
82
83 // Repair finished
84 if ($REP > 0) {
85         $MSG = sprintf(getMessage('ADMIN_REPAIR_ENTRIES_FIXED'), $REP);
86 } else {
87         $MSG = getMessage('ADMIN_REPAIR_NOTHING_FIXED');
88 }
89
90 // Output message
91 LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
92
93 //
94 ?>