2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 03/22/2004 *
4 * =================== Last change: 12/13/2004 *
6 * -------------------------------------------------------------------- *
7 * File : what-extentions.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Extension management *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Erweiterungen-Management *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
20 * For more information visit: http://www.mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
46 // Normally we want the overview of all registered extensions
49 if (isGetRequestParameterSet('reg_ext')) {
50 // We are about to register a new extension
52 $taskId = determineExtensionTaskId(getRequestParameter('reg_ext'));
54 // The id comes from task management and it is - of course - *not* the extension's name!
55 } elseif ((isFormSent('change')) && (ifPostContainsSelections()) && (!isDemoModeActive())) {
56 // De-/activate extensions
57 foreach (postRequestParameter('sel') as $ext_id => $ext_active) {
58 // Shall we keep the extension always active?
59 if ((isset($GLOBALS['cache_array']['always_active'][getExtensionName($ext_id)])) && ($GLOBALS['cache_array']['always_active'][getExtensionName($ext_id)] == 'Y') && ($ext_active == 'Y')) {
60 // Keep this extension active!
61 displayMessage('{%message,ADMIN_EXTENSION_ALWAYS_ACTIVE=' . $ext_id . '%}');
63 // Deactivation is default
65 setExtensionMode('deactivate');
67 // Is the extension deactivated?
68 if ($ext_active != 'Y') {
69 // Then we can activate it
71 setExtensionMode('activate');
75 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_extensions` SET `ext_active`='%s' WHERE `id`=%s AND `ext_active`='%s' LIMIT 1",
76 array($active, bigintval($ext_id), $ext_active), __FILE__, __LINE__);
78 // Run embeded SQL commands
79 doExtensionSqls($ext_id, getExtensionMode());
83 // Redirect to prevent missing cache in js.php
84 redirectToUrl('modules.php?module=admin&what=extensions&changed=' . countPostSelection());
85 } elseif (((isFormSent('edit')) || (isPostRequestParameterSet('modify'))) && (ifPostContainsSelections()) && (!isDemoModeActive())) {
86 // Change settings like CSS file load
87 if (isPostRequestParameterSet('modify')) {
90 foreach (postRequestParameter('sel') as $ext_id => $sel) {
92 $ext_id = bigintval($ext_id);
94 // Change this extension?
96 // Load mode is modify
97 setExtensionMode('modify');
99 // Get entry for 'active'
100 $active = postRequestParameter('active', $ext_id);
102 // Update extension's record
103 if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) {
104 // Update also CSS column when extensions sql_patches is newer or exact v0.0.6
105 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_extensions` SET `ext_has_css`='%s', `ext_active`='%s' WHERE `id`=%s LIMIT 1",
106 array(postRequestParameter('css', $ext_id), $active, $ext_id), __FILE__, __LINE__);
108 // When extension is older than v0.0.6 there is no column for the CSS information
109 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_extensions` SET `ext_active`='%s' WHERE `id`=%s LIMIT 1",
110 array($active, $ext_id), __FILE__, __LINE__);
113 // Run SQLs on activation / deactivation
115 case 'Y': setExtensionMode('activate'); break;
116 case 'N': setExtensionMode('deactivate'); break;
119 // Run embeded SQL commands
120 doExtensionSqls($ext_id, getExtensionMode());
124 // Redirect to prevent missing cache in js.php
125 redirectToUrl('modules.php?module=admin&what=extensions&edited=' . countPostSelection());
127 // Edit selected entries
129 foreach (postRequestParameter('sel') as $ext_id => $sel) {
130 // Edit this extension?
131 if (($sel == 'Y') || ($sel != 'Y')) {
132 // Default is no CSS for non-updated mailers
135 // Load required data
136 if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) {
137 $result = SQL_QUERY_ESC("SELECT `ext_has_css`, `ext_active` FROM `{?_MYSQL_PREFIX?}_extensions` WHERE `id`=%s LIMIT 1",
138 array(bigintval($ext_id)), __FILE__, __LINE__);
139 list($css, $active) = SQL_FETCHROW($result);
140 SQL_FREERESULT($result);
142 $result = SQL_QUERY_ESC("SELECT `ext_active` FROM `{?_MYSQL_PREFIX?}_extensions` WHERE `id`=%s LIMIT 1",
143 array(bigintval($ext_id)), __FILE__, __LINE__);
144 list($active) = SQL_FETCHROW($result);
145 SQL_FREERESULT($result);
149 // Prepare CSS column
150 $cssSelection = '---';
151 if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) {
152 $cssSelection = addSelectionBox('yn', $css, 'css', $ext_id);
155 // Prepare data for the row template
158 'name' => getExtensionName($ext_id),
159 'active' => addSelectionBox('yn', $active, 'active', $ext_id),
160 'css' => $cssSelection,
163 // Load row template and switch color
164 $OUT .= loadTemplate('admin_extensions_edit_row', true, $content);
169 loadTemplate('admin_extensions_edit', false, $OUT);
172 } elseif ((isPostRequestParameterSet('delete')) && (ifPostContainsSelections()) && (!isDemoModeActive())) {
173 // List extensions and when verbose is enabled SQL statements which will be executed
175 foreach (postRequestParameter('sel') as $ext_id => $sel) {
181 $ext_id = bigintval($ext_id);
184 if (isExtensionIdValid($ext_id)) {
185 // Get extension name
186 $ext_name = getExtensionName($ext_id);
188 // Listing of SQLs enabled?
189 if (isVerboseSqlEnabled()) {
190 // Load SQL commands in remove mode
191 if (loadExtension($ext_name, 'remove', '0.0.0', true)) {
192 // Generate extra table with loaded SQL commands
193 $VERBOSE_OUT = addExtensionVerboseSqlTable();
197 // Prepare data for the row template
200 'ext_name' => $ext_name,
201 'verbose' => $VERBOSE_OUT
204 // Load row template and switch color
205 $OUT .= loadTemplate('admin_extensions_delete_row', true, $content);
207 // Prepare data for the row template
213 $OUT .= loadTemplate('admin_extensions_delete_row_404', true, $content);
218 loadTemplate('admin_extensions_delete', false, $OUT);
220 } elseif ((isFormSent('do_delete')) && (ifPostContainsSelections()) && (!isDemoModeActive())) {
221 // Remove extensions from DB (you have to delete all files manually!)
223 foreach (postRequestParameter('sel') as $ext_id => $active) {
225 $ext_id = bigintval($ext_id);
227 // Is this extension selected and id valid?
228 if (($active == 1) && (isExtensionIdValid($ext_id))) {
229 // Run embeded SQL commands
230 doExtensionSqls($ext_id, 'remove');
234 // Redirect to prevent missing cache in js.php
235 redirectToUrl('modules.php?module=admin&what=extensions&removed=' . countPostSelection());
236 } elseif ((isGetRequestParameterSet('do')) && (!isDemoModeActive())) {
237 // Other things to do
238 $do = SQL_ESCAPE(secureString(getRequestParameter('do')));
239 } elseif (isGetRequestParameterSet('do')) {
242 } elseif (isGetRequestParameterSet('registered')) {
243 // Extensions changed
244 displayMessage('{%message,ADMIN_EXTENSION_REGISTERED=' . getExtensionName(getRequestParameter('registered')) . '%}');
247 if (isExtensionActive('task')) {
248 loadTemplate('admin_next_link', false, array(
249 'url' => 'modules.php?module=admin&what=list_task',
250 'title' => '{--ADMIN_EXTENSION_REGISTER_NEXT_LINK--}'
253 loadTemplate('admin_next_link', false, array(
254 'url' => 'modules.php?module=admin',
255 'title' => '{--ADMIN_EXTENSION_REGISTER_NEXT_LINK--}'
258 } elseif (isGetRequestParameterSet('changed')) {
259 // Extensions changed
260 displayMessage('{%message,ADMIN_EXTENSION_CHANGED=' . bigintval(getRequestParameter('changed')) . '%}');
261 } elseif (isGetRequestParameterSet('edited')) {
262 // Extensions changed
263 displayMessage('{%message,ADMIN_EXTENSION_EDITED=' . bigintval(getRequestParameter('edited')) . '%}');
264 } elseif (isGetRequestParameterSet('removed')) {
265 // Extensions changed
266 displayMessage('{%message,ADMIN_EXTENSIONS_REMOVED=' . bigintval(getRequestParameter('removed')) . '%}');
269 // Shall we display active/inactive extensions?
271 if (isGetRequestParameterSet('active')) {
272 $where = sprintf("WHERE `ext_active`='%s'", SQL_ESCAPE(secureString(getRequestParameter('active'))));
277 case 'overview': // List all registered extensions
278 if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) {
279 // Load extension data with CSS informations
280 $result = SQL_QUERY("SELECT
284 `ext_has_css` AS `ext_css`,
287 `{?_MYSQL_PREFIX?}_extensions`
290 `ext_name` ASC", __FILE__, __LINE__);
292 // Load extension data without CSS informations
293 $result = SQL_QUERY("SELECT
299 `{?_MYSQL_PREFIX?}_extensions`
302 `ext_name` ASC", __FILE__, __LINE__);
305 // Are there some entries?
306 if (!SQL_HASZERONUMS($result)) {
307 // Extensions are registered
309 while ($content = SQL_FETCHARRAY($result)) {
310 // Prepare CSS selection output
311 $cssSelection = '---';
312 if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) {
313 $cssSelection = '{%pipe,translateYesNo=' . $content['ext_css'] . '%}';
316 // Prepare data for the row template
317 $content['ext_css'] = $cssSelection;
319 // Load row template and switch color
320 $OUT .= loadTemplate('admin_extensions_row', true, $content);
324 SQL_FREERESULT($result);
327 loadTemplate('admin_extensions', false, $OUT);
329 // No extensions are registered
330 displayMessage('{--ADMIN_NO_EXTENSION_REGISTERED--}');
334 case 'register': // Register new extension
335 // Do we have some tasks?
336 $numTasks = countSumTotalData(getCurrentAdminId(), 'task_system', 'id', 'assigned_admin', true, "AND `task_type`='EXTENSION'");
338 // Is the id number valid and the task was found?
339 if (($taskId > 0) && ($numTasks > 0)) {
340 // id is valid so begin with registration, we first want to it's real name from task management (subject column)
341 $result = SQL_QUERY_ESC("SELECT `subject` FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `id`=%s LIMIT 1",
342 array(bigintval($taskId)), __FILE__, __LINE__);
343 list($subject) = SQL_FETCHROW($result);
346 SQL_FREERESULT($result);
348 // Disable cache update by default
350 if (!empty($subject)) {
351 // Extract extension's name from subject...
352 $ext_name = trim(substr($subject, 1, strpos($subject, ':') - 1));
354 // Test the extension for deprecation
355 loadExtension($ext_name, 'test');
357 // Is the extension deprecated?
358 if (!isExtensionDeprecated()) {
359 // ... so we can finally register and load it in registration mode
360 if (registerExtension($ext_name, $taskId)) {
362 if (!ifFatalErrorsDetected()) {
363 // Extension was found and successfully registered
364 redirectToUrl('modules.php?module=admin&what=extensions&registered=' . getExtensionId($ext_name));
367 displayMessage('{%message,ADMIN_EXTENSION_NOT_REGISTERED=' . $ext_name . '%}');
370 // Do we need to update cache file?
371 // @TODO Rewrite this to a filter
372 if (isExtensionActive('cache')) {
373 // Remove cache file (will be auto-created again!)
374 if ($GLOBALS['cache_instance']->loadCacheFile('config')) $GLOBALS['cache_instance']->removeCacheFile();
375 if ($GLOBALS['cache_instance']->loadCacheFile('extension')) $GLOBALS['cache_instance']->removeCacheFile();
376 if ($GLOBALS['cache_instance']->loadCacheFile('filter')) $GLOBALS['cache_instance']->removeCacheFile();
377 if ($GLOBALS['cache_instance']->loadCacheFile('modules')) $GLOBALS['cache_instance']->removeCacheFile();
379 } elseif (isExtensionInstalled($ext_name)) {
380 // Notify the admin that we have a problem here...
381 displayMessage('{--ADMIN_EXTENSION_REGISTRATION_FAILED_ALREADY--}');
383 // Notify the admin that we have a problem here...
384 displayMessage('{%message,ADMIN_EXTENSION_REGISTRATION_FAILED_404=' . $ext_name . '%}');
387 // Motify the admin that we have a problem here...
388 displayMessage('{--ADMIN_EXTENSION_REGISTRATION_FAILED_DEPRECATED--}');
391 // Extension was not found in task management
392 displayMessage('{--ADMIN_EXTENSION_REGISTRATION_FAILED_ID_404--}');
394 } elseif ($numTasks == '0') {
395 // No longer assigned or old task
396 displayMessage('{--ADMIN_EXTENSION_REGISTRATION_FAILED_ASSIGED--}');
399 displayMessage('{--ADMIN_EXTENSION_REGISTRATION_FAILED_INVALID--}');
404 displayMessage('{--SETTINGS_NOT_SAVED--}');