X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-extensions.php;h=bfba5b7929f53cbb62a641a71ff760bdbf21f25c;hp=5001a82579e489b003a930fa0dc29edb615ecdc9;hb=c3b4eaf29946349ff058691db2dcb615a5379bb2;hpb=a226d81121cb96048b1ed85fd8584a87d435b0db diff --git a/inc/modules/admin/what-extensions.php b/inc/modules/admin/what-extensions.php index 5001a82579..bfba5b7929 100644 --- a/inc/modules/admin/what-extensions.php +++ b/inc/modules/admin/what-extensions.php @@ -14,11 +14,9 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -43,31 +41,42 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Normally we want the overview of all registered extensions $do = 'overview'; if (isGetRequestParameterSet('reg_ext')) { // We are about to register a new extension - $do = 'register'; $taskId = bigintval(getRequestParameter('reg_ext')); + $do = 'register'; + $taskId = determineExtensionTaskId(getRequestParameter('reg_ext')); + // The id comes from task management and it is - of course - *not* the extension's name! } elseif ((isFormSent('change')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // De-/activate extensions - foreach (postRequestParameter('sel') as $taskId => $active) { + foreach (postRequestParameter('sel') as $ext_id => $ext_active) { // Shall we keep the extension always active? - if ((isset($GLOBALS['cache_array']['always_active'][getExtensionName($taskId)])) && ($GLOBALS['cache_array']['always_active'][getExtensionName($taskId)] == 'Y') && ($active == 'Y')) { + if ((isset($GLOBALS['cache_array']['always_active'][getExtensionName($ext_id)])) && ($GLOBALS['cache_array']['always_active'][getExtensionName($ext_id)] == 'Y') && ($ext_active == 'Y')) { // Keep this extension active! - loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_EXTENSION_ALWAYS_ACTIVE', getExtensionName($taskId))); + loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_EXTENSION_ALWAYS_ACTIVE', getExtensionName($ext_id))); } else { - // De/activate extension - $ACT = 'N'; setExtensionMode('deactivate'); - if ($active != 'Y') { $ACT = 'Y'; setExtensionMode('activate'); } + // Deactivation is default + $active = 'N'; + setExtensionMode('deactivate'); + + // Is the extension deactivated? + if ($ext_active != 'Y') { + // Then we can activate it + $active = 'Y'; + setExtensionMode('activate'); + } // END - if + + // Update database SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_extensions` SET `ext_active`='%s' WHERE `id`=%s AND `ext_active`='%s' LIMIT 1", - array($ACT, bigintval($taskId), $active), __FILE__, __LINE__); + array($active, bigintval($ext_id), $ext_active), __FILE__, __LINE__); // Run embeded SQL commands - doExtensionSqls($taskId, getExtensionMode()); + doExtensionSqls($ext_id, getExtensionMode()); } } // END - foreach @@ -78,9 +87,9 @@ if (isGetRequestParameterSet('reg_ext')) { if (isPostRequestParameterSet('modify')) { // Change entries $cache_update = '0'; - foreach (postRequestParameter('sel') as $taskId => $sel) { + foreach (postRequestParameter('sel') as $ext_id => $sel) { // Secure id - $taskId = bigintval($taskId); + $ext_id = bigintval($ext_id); // Change this extension? if ($sel == 1) { @@ -88,17 +97,17 @@ if (isGetRequestParameterSet('reg_ext')) { setExtensionMode('modify'); // Get entry for 'active' - $active = postRequestParameter('active', $taskId); + $active = postRequestParameter('active', $ext_id); // Update extension's record if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) { // Update also CSS column when extensions sql_patches is newer or exact v0.0.6 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_extensions` SET `ext_has_css`='%s', `ext_active`='%s' WHERE `id`=%s LIMIT 1", - array(postRequestParameter('css', $taskId), $active, $taskId), __FILE__, __LINE__); + array(postRequestParameter('css', $ext_id), $active, $ext_id), __FILE__, __LINE__); } else { // When extension is older than v0.0.6 there is no column for the CSS information SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_extensions` SET `ext_active`='%s' WHERE `id`=%s LIMIT 1", - array($active, $taskId), __FILE__, __LINE__); + array($active, $ext_id), __FILE__, __LINE__); } // Run SQLs on activation / deactivation @@ -108,16 +117,16 @@ if (isGetRequestParameterSet('reg_ext')) { } // END - if // Run embeded SQL commands - doExtensionSqls($taskId, getExtensionMode()); - } - } + doExtensionSqls($ext_id, getExtensionMode()); + } // END - if + } // END - foreach // Redirect to prevent missing cache in js.php redirectToUrl('modules.php?module=admin&what=extensions&edited=' . countPostSelection()); } else { // Edit selected entries $OUT = ''; - foreach (postRequestParameter('sel') as $taskId => $sel) { + foreach (postRequestParameter('sel') as $ext_id => $sel) { // Edit this extension? if (($sel == 'Y') || ($sel != 'Y')) { // Default is no CSS for non-updated mailers @@ -126,12 +135,12 @@ if (isGetRequestParameterSet('reg_ext')) { // Load required data if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) { $result = SQL_QUERY_ESC("SELECT ext_has_css, ext_active FROM `{?_MYSQL_PREFIX?}_extensions` WHERE `id`=%s LIMIT 1", - array(bigintval($taskId)), __FILE__, __LINE__); + array(bigintval($ext_id)), __FILE__, __LINE__); list($css, $active) = SQL_FETCHROW($result); SQL_FREERESULT($result); } else { $result = SQL_QUERY_ESC("SELECT ext_active FROM `{?_MYSQL_PREFIX?}_extensions` WHERE `id`=%s LIMIT 1", - array(bigintval($taskId)), __FILE__, __LINE__); + array(bigintval($ext_id)), __FILE__, __LINE__); list($active) = SQL_FETCHROW($result); SQL_FREERESULT($result); $css = 'X'; @@ -140,14 +149,14 @@ if (isGetRequestParameterSet('reg_ext')) { // Prepare CSS column $cssSelection = '---'; if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) { - $cssSelection = addSelectionBox('yn', $css, 'css', $taskId); + $cssSelection = addSelectionBox('yn', $css, 'css', $ext_id); } // END - if // Prepare data for the row template $content = array( - 'id' => $taskId, - 'name' => getExtensionName($taskId), - 'active' => addSelectionBox('yn', $active, 'active', $taskId), + 'id' => $ext_id, + 'name' => getExtensionName($ext_id), + 'active' => addSelectionBox('yn', $active, 'active', $ext_id), 'css' => $cssSelection, ); @@ -163,22 +172,23 @@ if (isGetRequestParameterSet('reg_ext')) { } elseif ((isPostRequestParameterSet('delete')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // List extensions and when verbose is enabled SQL statements which will be executed $OUT = ''; - foreach (postRequestParameter('sel') as $taskId => $sel) { + foreach (postRequestParameter('sel') as $ext_id => $sel) { // Init variables $VERBOSE_OUT = ''; initSqls(); // Secure id number - $taskId = bigintval($taskId); + $ext_id = bigintval($ext_id); // Is the id valid? - if (isExtensionIdValid($taskId)) { + if (isExtensionIdValid($ext_id)) { // Get extension name - $ext_name = getExtensionName($taskId); + $ext_name = getExtensionName($ext_id); + // Listing of SQLs enabled? if (isVerboseSqlEnabled()) { // Load SQL commands in remove mode - if (loadExtension($ext_name, 'remove', '', true)) { + if (loadExtension($ext_name, 'remove', '0.0', true)) { // Generate extra table with loaded SQL commands $VERBOSE_OUT = addExtensionVerboseSqlTable(); } // END - if @@ -186,7 +196,7 @@ if (isGetRequestParameterSet('reg_ext')) { // Prepare data for the row template $content = array( - 'id' => $taskId, + 'id' => $ext_id, 'ext_name' => $ext_name, 'ext_ver' => getExtensionVersion($ext_name), 'verbose' => $VERBOSE_OUT @@ -197,7 +207,7 @@ if (isGetRequestParameterSet('reg_ext')) { } else { // Prepare data for the row template $content = array( - 'id' => $taskId + 'id' => $ext_id ); // Not valid! @@ -211,14 +221,14 @@ if (isGetRequestParameterSet('reg_ext')) { } elseif ((isFormSent('remove')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // Remove extensions from DB (you have to delete all files manually!) $cache_update = '0'; - foreach (postRequestParameter('sel') as $taskId => $active) { + foreach (postRequestParameter('sel') as $ext_id => $active) { // Secure id number - $taskId = bigintval($taskId); + $ext_id = bigintval($ext_id); // Is this extension selected and id valid? - if (($active == 1) && (isExtensionIdValid($taskId))) { + if (($active == 1) && (isExtensionIdValid($ext_id))) { // Run embeded SQL commands - doExtensionSqls($taskId, 'remove'); + doExtensionSqls($ext_id, 'remove'); } // END - if } // END - foreach @@ -314,15 +324,11 @@ ORDER BY break; case 'register': // Register new extension - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `assigned_admin`=%s AND `task_type`='EXTENSION' LIMIT 1", - array(getCurrentAdminId()), __FILE__, __LINE__); - $task_found = SQL_NUMROWS($result); - - // Free result - SQL_FREERESULT($result); + // Do we have some tasks? + $numTasks = countSumTotalData(getCurrentAdminId(), 'task_system', 'id', 'assigned_admin', true, "AND `task_type`='EXTENSION'"); // Is the id number valid and the task was found? - if (($taskId > 0) && ($task_found == 1)) { + if (($taskId > 0) && ($numTasks > 0)) { // id is valid so begin with registration, we first want to it's real name from task management (subject column) $result = SQL_QUERY_ESC("SELECT `subject` FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `id`=%s LIMIT 1", array(bigintval($taskId)), __FILE__, __LINE__); @@ -377,7 +383,7 @@ ORDER BY // Extension was not found in task management loadTemplate('admin_settings_saved', false, '{--ADMIN_EXTENSION_REGISTRATION_FAILED_ID_404--}'); } - } elseif ($task_found == '0') { + } elseif ($numTasks == '0') { // No longer assigned or old task loadTemplate('admin_settings_saved', false, '{--ADMIN_EXTENSION_REGISTRATION_FAILED_ASSIGED--}'); } else {