X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=f7381e612ba3d4b036de2d4fa3e20cf64db44b18;hp=1edafa3648f26c9b50d9e8d50905c5af6479bbbf;hb=cf3765c38cf0a76f396aca291f71858936e92956;hpb=916bba4f00ee924f0d88b8fc273dee5bfb798aed diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index 1edafa3648..f7381e612b 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 + '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" @@ -90,12 +91,12 @@ foreach ($includes as $inc) { loadInclude($inc); // Add found theme to array - $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_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 @@ -106,35 +107,35 @@ unset($GLOBALS['theme_data']); array_pk_sort($THEMES, array('theme_name')); // Generate output lines for the template -$OUT = ''; $SW = 2; +$OUT = ''; foreach ($THEMES['theme_unix'] as $key => $unix) { $default = ''; if (getCurrentTheme() == $unix) $default = ' selected="selected"'; // Add row + // @TODO Move this code into a template $OUT .= " - + - ".$THEMES['theme_name'][$key]." - + ".$THEMES['theme_name'][$key]." + ".$THEMES['theme_author'][$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 = " - - ".loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_THEMES_FOUND'))." + $OUT = ' + + ' . loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_THEMES_FOUND--}') . ' -\n"; +'; } // END - if // Load template