X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-extensions.php;h=5c12d48717407748847973276a54751fdb0f76e8;hp=5dd017ec47ab9723deeaeeb1c25c48b54aa576e8;hb=cf3765c38cf0a76f396aca291f71858936e92956;hpb=fc162164725588cf75969f707faead9c9cd8e68b diff --git a/inc/modules/admin/what-extensions.php b/inc/modules/admin/what-extensions.php index 5dd017ec47..5c12d48717 100644 --- a/inc/modules/admin/what-extensions.php +++ b/inc/modules/admin/what-extensions.php @@ -116,7 +116,7 @@ if (isGetRequestParameterSet('reg_ext')) { redirectToUrl('modules.php?module=admin&what=extensions&edited=' . countPostSelection()); } else { // Edit selected entries - $SW = 2; $OUT = ''; + $OUT = ''; foreach (postRequestParameter('sel') as $ext_id => $sel) { // Edit this extension? if (($sel == 'Y') || ($sel != 'Y')) { @@ -145,7 +145,6 @@ if (isGetRequestParameterSet('reg_ext')) { // Prepare data for the row template $content = array( - 'sw' => $SW, 'id' => $ext_id, 'name' => getExtensionName($ext_id), 'active' => addSelectionBox('yn', $active, 'active', $ext_id), @@ -154,8 +153,7 @@ if (isGetRequestParameterSet('reg_ext')) { // Load row template and switch color $OUT .= loadTemplate('admin_extensions_edit_row', true, $content); - $SW = 3 - $SW; - } + } // END - if } // END - foreach // Load template @@ -164,7 +162,7 @@ if (isGetRequestParameterSet('reg_ext')) { } } elseif ((isPostRequestParameterSet('delete')) && (countPostSelection() > 0) && (!isDemoModeActive())) { // List extensions and when verbose is enabled SQL statements which will be executed - $OUT = ''; $SW = 2; + $OUT = ''; foreach (postRequestParameter('sel') as $ext_id => $sel) { // Init variables $VERBOSE_OUT = ''; @@ -188,7 +186,6 @@ if (isGetRequestParameterSet('reg_ext')) { // Prepare data for the row template $content = array( - 'sw' => $SW, 'id' => $ext_id, 'ext_name' => $ext_name, 'ext_ver' => getExtensionVersion($ext_name), @@ -200,14 +197,12 @@ if (isGetRequestParameterSet('reg_ext')) { } else { // Prepare data for the row template $content = array( - 'sw' => $SW, 'id' => $ext_id ); // Not valid! $OUT .= loadTemplate('admin_extensions_delete_row_404', true, $content); } - $SW = 3 - $SW; } // END - foreach // Load template @@ -272,7 +267,7 @@ ORDER BY `ext_name` ASC", __FILE__, __LINE__); // Are there some entries? if (SQL_NUMROWS($result) > 0) { // Extensions are registered - $OUT = ''; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Prepare CSS selection output $cssSelection = '---'; @@ -281,7 +276,6 @@ ORDER BY `ext_name` ASC", __FILE__, __LINE__); // Prepare data for the row template // @TODO Rewrite in template: id->ext_id,name->ext_name,active->ext_active,ver->ext_ver $content = array( - 'sw' => $SW, 'id' => $content['ext_id'], 'name' => $content['ext_name'], 'active' => translateYesNo($content['ext_active']), @@ -292,8 +286,7 @@ ORDER BY `ext_name` ASC", __FILE__, __LINE__); // Load row template and switch color $OUT .= loadTemplate('admin_extensions_row', true, $content); - $SW = 3 - $SW; - } + } // END - while // Free memory SQL_FREERESULT($result); @@ -319,16 +312,16 @@ ORDER BY `ext_name` ASC", __FILE__, __LINE__); // 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($ext_id)), __FILE__, __LINE__); - list($subj) = SQL_FETCHROW($result); + list($subject) = SQL_FETCHROW($result); // Free result SQL_FREERESULT($result); // Disable cache update by default $cache_update = '0'; - if (!empty($subj)) { + if (!empty($subject)) { // Extract extension's name from subject... - $ext_name = trim(substr($subj, 1, strpos($subj, ':') - 1)); + $ext_name = trim(substr($subject, 1, strpos($subject, ':') - 1)); // Test the extension for deprecation loadExtension($ext_name, 'test');