X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=20d74a441e1e3ef05242ecbcfe584c701fd3a123;hb=180f978ebe21d5fcec3a51be8405028e7523e6a9;hp=4995716159eaaaba921c858f5e9fd7a407cc658b;hpb=19b197c32c96ce8eea26561fb7b40e87c57716ae;p=mailer.git diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index 4995716159..20d74a441e 100644 --- a/inc/modules/member/what-themes.php +++ b/inc/modules/member/what-themes.php @@ -14,11 +14,9 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -45,10 +43,10 @@ if (!defined('__SECURITY')) { } // Add description as navigation point -addMenuDescription('member', __FILE__); +addYouAreHereLink('member', __FILE__); if ((!isExtensionActive('theme')) && (!isAdmin())) { - loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('theme')); + displayMessage(generateExtensionInactiveNotInstalledMessage('theme')); return; } // END - if @@ -64,17 +62,17 @@ if (isPostRequestParameterSet('member_theme')) { setTheme($newTheme); // Theme saved! - loadTemplate('admin_settings_saved', false, getMessage('MEMBER_THEME_SAVED')); + displayMessage('{--MEMBER_THEME_SAVED--}'); } // END - if // Initialize array $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 + '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" @@ -107,35 +105,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"'; + if (getCurrentTheme() == $unix) { + $default = ' checked="checked"'; + } // END - if - // Add row - $OUT .= " - - - - ".$THEMES['theme_name'][$key]." - - ".$THEMES['theme_author'][$key]." - - - ".$THEMES['theme_url'][$key]." - - v".$THEMES['theme_version'][$key]." -\n"; - $SW = 3 - $SW; + // 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 = " - - ".loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_THEMES_FOUND'))." + $OUT = ' + + ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', true) . ' -\n"; +'; } // END - if // Load template