0) && (!IS_DEMO())) { // De-/activate extensions foreach ($_POST['sel'] as $id => $active) { // Shall we keep the extension always active? if ((isset($cacheArray['active_extensions'][GET_EXT_NAME($id)])) && ($cacheArray['active_extensions'][GET_EXT_NAME($id)] == "Y") && ($active == "N")) { // Keep this extension active! } else { // De/activate extension $ACT = "N"; $EXT_LOAD_MODE = "deactivate"; if ($active == "N") { $ACT = "Y"; $EXT_LOAD_MODE = "activate"; } $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_extensions SET ext_active='".$ACT."' WHERE id=%s AND ext_active='%s' LIMIT 1", array(bigintval($id), $active), __FILE__, __LINE__); // Run embeded SQL commands EXTENSION_RUN_SQLS($id, $EXT_LOAD_MODE); } } } elseif (((isset($_POST['edit'])) || (isset($_POST['modify']))) && ($SEL > 0) && (!IS_DEMO())) { // Change settings like CSS file load if (isset($_POST['modify'])) { // Change entries $cache_update = 0; foreach ($_POST['sel'] as $id => $sel) { // Secure ID $id = bigintval($id); // Change this extension? if ($sel == 1) { // Update extension's record $active = $_POST['active'][$id]; if (GET_EXT_VERSION("sql_patches") >= "0.0.6") { // Update also CSS column when extensions sql_patches is newer or exact v0.0.6 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_extensions SET ext_has_css='%s', ext_active='%s' WHERE id=%s LIMIT 1", array($_POST['css'][$id], $active, $id), __FILE__, __LINE__); } else { // When extension is older than v0.0.6 there is no column for the CSS information $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_extensions SET ext_active='%s' WHERE id=%s LIMIT 1", array($active, $id), __FILE__, __LINE__); } // Run SQLs on activation / deactivation switch ($active) { case 'Y': $EXT_LOAD_MODE = "activate"; break; case 'N': $EXT_LOAD_MODE = "deactivate"; break; } // Run embeded SQL commands EXTENSION_RUN_SQLS($id, $EXT_LOAD_MODE); } } // Extensions changed OUTPUT_HTML("

"); LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_EXT_CHANGED); OUTPUT_HTML("

"); } else { // Edit selected entries $SW = "2"; $OUT = ""; foreach ($_POST['sel'] as $id => $sel) { // Edit this extension? if (($sel == "Y") || ($sel == "N")) { // Load required data if (GET_EXT_VERSION("sql_patches") >= "0.0.6") { $result = SQL_QUERY_ESC("SELECT ext_name, ext_has_css, ext_active FROM "._MYSQL_PREFIX."_extensions WHERE id=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__); list($name, $css, $active) = SQL_FETCHROW($result); SQL_FREERESULT($result); } else { $result = SQL_QUERY_ESC("SELECT ext_name, ext_active FROM "._MYSQL_PREFIX."_extensions WHERE id=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__); list($name, $active) = SQL_FETCHROW($result); SQL_FREERESULT($result); $css = "X"; } // Output row $CSS = "---"; if (GET_EXT_VERSION("sql_patches") >= "0.0.6") $CSS = ADD_SELECTION("yn", $css, "css", $id); // Prepare data for the row template $content = array( 'sw' => $SW, 'id' => $id, 'name' => $name, 'active' => ADD_SELECTION("yn", $active, "active", $id), 'css' => $CSS, ); // Load row template and switch color $OUT .= LOAD_TEMPLATE("admin_extensions_edit_row", true, $content); $SW = 3 - $SW; } } // END - foreach define('__EXTENSIONS_ROWS', $OUT); // Load template LOAD_TEMPLATE("admin_extensions_edit"); $do = "edit"; } } elseif ((isset($_POST['delete'])) && ($SEL > 0) && (!IS_DEMO())) { // List extensions and when verbose is enabled SQL statements which will be executed $SW = 2; $OUT = ""; foreach ($_POST['sel'] as $id => $sel) { // Init variables $VERBOSE_OUT = ""; $SQLs = array(); // Secure id number $id = bigintval($id); // Get extension name $ext_name = GET_EXT_NAME($id); $ext_ver = GET_EXT_VERSION($ext_name); if ($_CONFIG['verbose_sql']) { // Load SQL commands in remove mode $EXT_LOAD_MODE = "remove"; $EXT_ALWAYS_ACTIVE = "N"; $file = sprintf("%sinc/extensions/ext-%s.php", PATH, $ext_name); if (FILE_READABLE($file)) { // Load file include($file); // Generate extra table with loaded SQL commands $VERBOSE_OUT = EXTENSION_VERBOSE_TABLE($SQLs); } } // END - if // Prepare data for the row template $content = array( 'sw' => $SW, 'id' => $id, 'ext_name' => $ext_name, 'ext_ver' => $ext_ver, 'verbose' => $VERBOSE_OUT ); // Load row template and switch color $OUT .= LOAD_TEMPLATE("admin_extensions_delete_row", true, $content); $SW = 3 - $SW; } // END - foreach define('__EXTENSIONS_ROWS', $OUT); // Load template LOAD_TEMPLATE("admin_extensions_delete"); $do = "delete"; } elseif ((isset($_POST['remove'])) && ($SEL > 0) && (!IS_DEMO())) { // Remove extensions from DB (you have to delete all files manually!) $cache_update = 0; foreach ($_POST['sel'] as $id => $active) { // Secure ID number $id = bigintval($id); // Is this extension selected? if ($active == 1) { // Run embeded SQL commands EXTENSION_RUN_SQLS($id, "remove"); } // END - if } // END - foreach } elseif (!empty($_GET['do']) && (!IS_DEMO())) { // Other things to do $do = SQL_ESCAPE(strip_tags($_GET['do'])); } elseif (!empty($_GET['do'])) { // Demo mode active! $do = "demo"; } // Shall we display active/inactive extensions? $where = ""; if (!empty($_GET['active'])) { $where = sprintf("WHERE ext_active = '%s'", SQL_ESCAPE(strip_tags($_GET['active']))); } // END - if // Case selection switch ($do) { case "overview": // List all registered extensions if (GET_EXT_VERSION("sql_patches") >= "0.0.6") { // Load extension data with CSS informations $result = SQL_QUERY("SELECT id, ext_name, ext_lang_file, ext_active, ext_has_css, ext_version FROM "._MYSQL_PREFIX."_extensions ".$where." ORDER BY ext_name", __FILE__, __LINE__); } else { // Load extension data without CSS informations $result = SQL_QUERY("SELECT id, ext_name, ext_lang_file, ext_active, id, ext_version FROM "._MYSQL_PREFIX."_extensions ".$where." ORDER BY ext_name", __FILE__, __LINE__); } // Are there some entries? if (SQL_NUMROWS($result) > 0) { // Extensions are registered $SW = 2; $OUT = ""; while (list($id, $name, $lang, $active, $css, $ver) = SQL_FETCHROW($result)) { $CSS = "---"; if (GET_EXT_VERSION("sql_patches") >= "0.0.6") $CSS = TRANSLATE_YESNO($css); // Prepare data for the row template $content = array( 'sw' => $SW, 'id' => $id, 'name' => $name, 'active' => TRANSLATE_YESNO($active), 'act_val' => $active, 'lang' => $lang, 'css' => $CSS, 'ver' => $ver, ); // Load row template and switch color $OUT .= LOAD_TEMPLATE("admin_extensions_row", true, $content); $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); // Remember rows in constant for the template define('__EXT_ROWS', $OUT); // Load template LOAD_TEMPLATE("admin_extensions"); } else { // No extensions are registered LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NO_EXTENSION_REGISTERED.""); } 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(bigintval(GET_ADMIN_ID(get_session('admin_login')))), __FILE__, __LINE__); $task_found = SQL_NUMROWS($result); // Free result SQL_FREERESULT($result); // Is the ID number valid and the task was found? if (($id > 0) && ($task_found == 1)) { // 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($id)), __FILE__, __LINE__); list($subj) = SQL_FETCHROW($result); SQL_FREERESULT($result); // Disable cache update by default $cache_update = 0; if (!empty($subj)) { // Extract extension's name from subject... $ext_name = trim(substr($subj, 1, strpos($subj, ":") - 1)); // ... so we can finally register and load it in registration mode $status = EXTENSION_REGISTER($ext_name, $id); if ($status == true) { // Extension was found and successfully registered LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_EXTENSION_REGISTERED); // Do we need to update cache file? if ((EXT_IS_ACTIVE("cache")) && ($cacheMode != "no")) { // Remove cache file (will be auto-created again!) if ($cacheInstance->cache_file("config")) $cacheInstance->cache_destroy(); if ($cacheInstance->cache_file("extensions", true)) $cacheInstance->cache_destroy(); if ($cacheInstance->cache_file("mod_reg")) $cacheInstance->cache_destroy(); } // END - if } elseif (GET_EXT_VERSION($ext_name) != "") { // Motify the admin that we have a problem here... LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_REG_FAILED_ALREADY); } else { // Motify the admin that we have a problem here... LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_REG_FAILED_404); } } else { // Extension was not found in task management LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_REG_FAILED_ID_404); } } elseif ($task_found == "0") { // No longer assigned or old task LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_REG_FAILED_ASSIGED); } else { // ID is invalid LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_REG_FAILED_INVALID); } break; case "demo": LOAD_TEMPLATE("admin_settings_saved", false, SETTINGS_NOT_SAVED); break; } // ?>