X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=762b64dc6f85956ee23775aee58113aba5c6fc20;hp=d238500bb59edb567c8a6d2b9c4f440514c15907;hb=61621983cc6d7195fcc7eab29b5f6080ff283b34;hpb=b8c86fa12322603c24a88ea2b0fd3dbeba612752 diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index d238500bb5..762b64dc6f 100644 --- a/inc/modules/member/what-themes.php +++ b/inc/modules/member/what-themes.php @@ -1,7 +1,7 @@ array(), // Unix name from filesystem - 'theme_name' => array(), // Title - 'theme_author' => 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 +$themes = array( + 'theme_unix' => array(), // Unix name from filesystem + 'theme_name' => array(), // Title + 'theme_author' => array(), // Theme author's name + 'theme_email' => array(), // Author's email address + 'theme_url' => array(), // URL were you can download it from + 'theme_version' => array(), // Version number of theme ); // Read directory "themes" -$handle = opendir(constant('PATH')."theme/") or mxchange_die("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')); + +// Walk through all entries and add it +foreach ($includes as $inc) { + // Get directory from it + $dir = basename(dirname($inc)); - if (($entry != ".") && ($entry != "..") && (INCLUDE_READABLE($INC)) && (THEME_IS_ACTIVE($entry))) { + // Is the theme active, then include it + if (isThemeActive($dir)) { // Found a valid directory so let's load it's theme.php file - LOAD_INC($INC); + loadInclude($inc); // Add found theme to array - $THEMES['theme_unix'][] = $entry; - $THEMES['theme_name'][] = $THEME_NAME; - $THEMES['theme_author'][] = $THEME_AUTHOR; - $THEMES['theme_email'][] = $THEME_EMAIL; - $THEMES['theme_url'][] = $THEME_URL; - $THEMES['theme_ver'][] = $THEME_VERSION; + array_push($themes['theme_unix'] , $dir); + array_push($themes['theme_name'] , $GLOBALS['theme_data']['name']); + array_push($themes['theme_author'] , $GLOBALS['theme_data']['author']); + array_push($themes['theme_email'] , $GLOBALS['theme_data']['email']); + array_push($themes['theme_url'] , $GLOBALS['theme_data']['url']); + array_push($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 (get_session('mxchange_theme') == $unix) $default = " selected=\"selected\""; - - // Add row - $OUT .= " - - - - ".$THEMES['theme_name'][$key]." - - ".$THEMES['theme_author'][$key]." - - - ".$THEMES['theme_url'][$key]." - - v".$THEMES['theme_ver'][$key]." -\n"; - $SW = 3 - $SW; -} +$OUT = ''; +foreach ($themes['theme_unix'] as $key => $unix) { + $default = ''; + if (getCurrentTheme() == $unix) { + $default = ' checked="checked"'; + } // END - if + + // Prepare content + $content = array( + 'unix' => $unix, + 'default' => $default, + 'theme_name' => $themes['theme_name'][$key], + 'theme_email' => $themes['theme_email'][$key], + 'theme_author' => $themes['theme_author'][$key], + 'theme_url' => $themes['theme_url'][$key], + 'theme_version' => $themes['theme_version'][$key] + ); + + // Load row template + $OUT .= loadTemplate('member_themes_row', TRUE, $content); +} // END - foreach if (empty($OUT)) { - // No themes found??? - $OUT = " - - ".LOAD_TEMPLATE("admin_settings_saved", true, getMessage('MEMBER_NO_THEMES_FOUND'))." + // No themes found??? + $OUT = ' + + ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', TRUE) . ' -\n"; -} -define('__THEME_LIST', $OUT); +'; +} // END - if // Load template -LOAD_TEMPLATE("member_themes"); +loadTemplate('member_themes', FALSE, $OUT); -// +// [EOF] ?>