$sel) { $sql = ''; // Shall I de-/activate or delete themes? if (isPostRequestElementSet('status')) { // Change status if (postRequestElement('active', $id) == 'Y') { $sql = "UPDATE `{?_MYSQL_PREFIX?}_themes` SET `theme_active`='N' WHERE `id`=%s LIMIT 1"; } else { $sql = "UPDATE `{?_MYSQL_PREFIX?}_themes` SET `theme_active`='Y' WHERE `id`=%s LIMIT 1"; } $OUT = '{--ADMIN_THEMES_UPDATED--}'; } elseif (isFormSent('delete')) { // Delete themes $sql = "DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_themes` WHERE `id`=%s LIMIT 1"; $OUT = '{--ADMIN_THEMES_DELETED--}'; } // Run SQL command? if (!empty($sql)) { // Run it $result = SQL_QUERY_ESC($sql, array(bigintval($id)), __FILE__, __LINE__); // Rebuild cache rebuildCache('themes', 'them'); } // END - if } // END - foreach // Output generated? if (empty($OUT)) $OUT = '{--ADMIN_THEME_NO_OUTPUT--}'; } elseif (isGetRequestElementSet('default_theme')) { // Escape string from input $postData['default_theme'] = getRequestElement('default_theme'); // Set session setTheme($postData['default_theme']); // Set it in config and current theme as well setConfigEntry('default_theme', $postData['default_theme']); // Save theme adminSaveSettings($postData); } // Init rows $OUT = ''; // Switch to testing mode $GLOBALS['theme_mode'] = 'test'; $result = SQL_QUERY("SELECT `id`, `theme_path`, `theme_active`, `theme_ver` AS `theme_version`, `theme_name` FROM `{?_MYSQL_PREFIX?}_themes` ORDER BY `theme_path` ASC", __FILE__, __LINE__); if (!SQL_HASZERONUMS($result)) { while ($content = SQL_FETCHARRAY($result)) { // Construct IFN $inc = sprintf("theme/%s/theme.php", $content['theme_path']); // Load theme in test mode loadInclude($inc); // Copy data from theme to content $content['theme_url'] = $GLOBALS['theme_data']['url']; // Is the loaded theme name != current theme name? $content['link'] = $content['theme_path']; if ($content['theme_path'] != getCurrentTheme()) { $content['link'] = '' . $content['theme_path'] . ''; } // END - if // Prepare data for the row template $content['email'] = ' ' . displayMessage('{--ADMIN_NO_THEMES_FOUND--}', true) . ' '; } // Load template loadTemplate('admin_edit_theme', false, $OUT); // [EOF] ?>