X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=4995716159eaaaba921c858f5e9fd7a407cc658b;hp=51ffcb580bae907891930b97176501c946bc00fc;hb=19b197c32c96ce8eea26561fb7b40e87c57716ae;hpb=1e2a4228e071a67a2d79e970a843e3e30476cfb8 diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index 51ffcb580b..4995716159 100644 --- a/inc/modules/member/what-themes.php +++ b/inc/modules/member/what-themes.php @@ -1,7 +1,7 @@ array(), // Theme author's name 'theme_email' => array(), // Author's email address 'theme_url' => array(), // URL were you can download it from - 'theme_ver' => array(), // Version number of theme + 'theme_version' => array(), // Version number of theme ); // Read directory "themes" -$handle = opendir(constant('PATH')."theme/") or app_die(__FILE__, __LINE__, "Cannot read themes dir!"); -while ($entry = readdir($handle)) { - // Construct absolute theme.php file name - $INC = sprintf("theme/%s/theme.php", $entry); +$includes = getArrayFromDirectory('theme/', '', false, true, array('css', 'images')); - if ((!isDirectory($entry)) && (isIncludeReadable($INC)) && (isThemeActive($entry))) { +// Walk through all entries and add it +foreach ($includes as $inc) { + // Get directory from it + $dir = basename(dirname($inc)); + + // Is the theme active, then include it + if (isThemeActive($dir)) { // Found a valid directory so let's load it's theme.php file - loadInclude($INC); + loadInclude($inc); // Add found theme to array - $THEMES['theme_unix'][] = $entry; - $THEMES['theme_name'][] = $GLOBALS['theme_data']['name']; - $THEMES['theme_author'][] = $GLOBALS['theme_data']['author']; - $THEMES['theme_email'][] = $GLOBALS['theme_data']['email']; - $THEMES['theme_url'][] = $GLOBALS['theme_data']['url']; - $THEMES['theme_ver'][] = $GLOBALS['theme_data']['version']; + $THEMES['theme_unix'][] = $dir; + $THEMES['theme_name'][] = $GLOBALS['theme_data']['name']; + $THEMES['theme_author'][] = $GLOBALS['theme_data']['author']; + $THEMES['theme_email'][] = $GLOBALS['theme_data']['email']; + $THEMES['theme_url'][] = $GLOBALS['theme_data']['url']; + $THEMES['theme_version'][] = $GLOBALS['theme_data']['version']; } // END - if } // END - while -// Close directory -closedir($handle); +// Remove last theme data +unset($GLOBALS['theme_data']); // Sort array by Uni* name -array_pk_sort($THEMES, array("theme_name")); +array_pk_sort($THEMES, array('theme_name')); // Generate output lines for the template $OUT = ''; $SW = 2; foreach ($THEMES['theme_unix'] as $key => $unix) { $default = ''; - if (getSession('mxchange_theme') == $unix) $default = ' selected="selected"'; + if (getCurrentTheme() == $unix) $default = ' selected="selected"'; // Add row $OUT .= " - + - ".$THEMES['theme_name'][$key]." - + ".$THEMES['theme_name'][$key]." + ".$THEMES['theme_author'][$key]." - - ".$THEMES['theme_url'][$key]." + + ".$THEMES['theme_url'][$key]." - v".$THEMES['theme_ver'][$key]." + v".$THEMES['theme_version'][$key]." \n"; $SW = 3 - $SW; -} +} // END - foreach if (empty($OUT)) { // No themes found??? $OUT = " - - ".LOAD_TEMPLATE('admin_settings_saved', true, getMessage('MEMBER_NO_THEMES_FOUND'))." + + ".loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_THEMES_FOUND'))." \n"; -} -define('__THEME_LIST', $OUT); +} // END - if // Load template -LOAD_TEMPLATE("member_themes"); +loadTemplate('member_themes', false, $OUT); -// +// [EOF] ?>