More improved SQL queries
[mailer.git] / inc / modules / admin / what-theme_import.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/12/2004 *
4  * ================                             Last change: 11/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-theme_import.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Import of new themes                             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Importieren von neuen Themes                     *
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 } elseif (!EXT_IS_ACTIVE("theme")) {
39         addFatalMessage(sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "theme"));
40         return;
41 }
42
43 // Add description as navigation point
44 ADD_DESCR("admin", __FILE__);
45
46 // Switch to testing mode
47 $THEME_MODE = "test";
48
49 // Import selected theme if not present
50 if (!empty($_POST['theme'])) {
51         // Check if theme is there
52         if (!THEME_CHECK_EXIST($_POST['theme'])) {
53                 // Import theme
54                 $INC = sprintf("theme/%s/theme.php", SQL_ESCAPE($_POST['theme']));
55                 if (FILE_READABLE($INC)) {
56                         // Load the theme header file
57                         LOAD_INC($INC);
58
59                         // Register it ith the exchange
60                         SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_themes` (`theme_path`, `theme_active`, `theme_ver`, `theme_name`)
61 VALUES ('%s','N','%s','%s')",
62                                 array($_POST['theme'], $THEME_VERSION, $THEME_NAME), __FILE__, __LINE__);
63
64                         // Destroy cache
65                         REBUILD_CACHE("themes", "them");
66
67                         // Prepare message
68                         $msg = ADMIN_THEME_IMPORTED_1.$_POST['theme'].ADMIN_THEME_IMPORTED_2;
69                 } else {
70                         // Include file not found!
71                         $msg = ADMIN_THEME_INC_404_1.$_POST['theme'].ADMIN_THEME_INC_404_2;
72                 }
73         } else {
74                 // Theme already imported
75                 $msg = ADMIN_THEME_ALREADY_1.$_POST['theme'].ADMIN_THEME_ALREADY_2;
76         }
77
78         // Output message
79         LOAD_TEMPLATE("admin_settings_saved", false, $msg);
80 } // END - if
81
82 // Initialize array
83 $THEMES = array(
84         'theme_unix'   => array(), // Unix name from filesystem
85         'theme_name'   => array(), // Title
86         'theme_author' => array(), // Theme author's name
87         'theme_email'  => array(), // Author's email address
88         'theme_url'    => array(), // URL were you can download it from
89         'theme_ver'    => array(), // Version number of theme
90 );
91
92 // Read directory "themes"
93 $handle = opendir(PATH."theme/") or mxchange_die("Cannot read themes dir!");
94 while ($dir = readdir($handle)) {
95         // Construct absolute theme.php file name
96         $INC = sprintf("theme/%s/theme.php", $dir);
97
98         // Test it...
99         if (($dir != ".") && ($dir != "..") && (FILE_READABLE($INC))) {
100                 // Found a valid directory so let's load it's theme.php file
101                 LOAD_INC($INC);
102
103                 // Add found theme to array
104                 $THEMES['theme_unix'][]   = $dir;
105                 $THEMES['theme_name'][]   = $THEME_NAME;
106                 $THEMES['theme_author'][] = $THEME_AUTHOR;
107                 $THEMES['theme_email'][]  = $THEME_EMAIL;
108                 $THEMES['theme_url'][]    = $THEME_URL;
109                 $THEMES['theme_ver'][]    = $THEME_VERSION;
110         } // END - if
111 } // END - while
112
113 // Close directory
114 closedir($handle);
115
116 // Sort array by Uni* name
117 array_pk_sort($THEMES, array("theme_name"));
118
119 // Generate output lines for the template
120 $OUT = ""; $SW = 2;
121 foreach ($THEMES['theme_unix'] as $key => $unix) {
122         // Check if current theme is already imported or not
123         if (THEME_CHECK_EXIST($unix)) {
124                 // Already installed
125                 $FOUND = "<div class=\"admin_note\">{!ADMIN_THEME_ALREADY_INSTALLED!}</div>";
126         } else {
127                 // Theme not installed
128                 $FOUND = "<form action=\"{!URL!}/modules.php?module=admin&amp;what=theme_import\" method=\"POST\">
129   <input type=\"submit\" name=\"ok\" class=\"admin_submit\" value=\"{!ADMIN_INSTALL_THEME!}\" />
130   <input type=\"hidden\" name=\"theme\" value=\"".$unix."\" />
131 </form>";
132         }
133
134         // Add row
135         $OUT .= "<tr>
136   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\" height=\"30\">".$unix."</td>
137   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">".$THEMES['theme_name'][$key]."</td>
138   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
139     <a href=\"mailto:".$THEMES['theme_email'][$key]."?Subject=[Theme:] ".$THEMES['theme_name'][$key]." (".$unix.")"."\">".$THEMES['theme_author'][$key]."</a>
140   </td>
141   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
142     <a href=\"".DEREFERER($THEMES['theme_url'][$key])."\" target=\"_blank\">".$THEMES['theme_url'][$key]."</a>
143   </td>
144   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">v".$THEMES['theme_ver'][$key]."</td>
145   <td class=\"switch_sw".$SW." bottom2\" align=\"center\">
146     ".$FOUND."
147   </td>
148 </tr>\n";
149
150         // Switch color
151         $SW = 3 - $SW;
152 }
153
154 if (empty($OUT)) {
155         // No themes found???
156         $OUT .= "<tr>
157   <td colspan=\"6\" class=\"bottom2\" height=\"80\">
158     ".LOAD_TEMPLATE("admin_settings_saved", true, getMessage('ADMIN_NO_THEMES_FOUND'))."
159   </td>
160 </tr>\n";
161 } // END - if
162 define('__THEME_LIST', $OUT);
163
164 // Load template
165 LOAD_TEMPLATE("admin_theme_import");
166
167 //
168 ?>