$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 = sqlQueryEscaped($sql, array(bigintval($id)), __FILE__, __LINE__); // Rebuild cache rebuildCache('themes', 'themes'); } // 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 setMailerTheme($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 = sqlQuery("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 (!ifSqlHasZeroNumRows($result)) { while ($content = sqlFetchArray($result)) { // Is the theme readable? if (isThemeReadable($content['theme_path'])) { // Load theme in test mode loadInclude(sprintf('theme/%s/theme.php', $content['theme_path'])); // 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] ?>