X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=0dad311230328796dea510234312c48e9ba4df68;hp=603938e115f2569fa38a94ad0973e6d6328ce0d3;hb=0f3a135204757cc8750262871c8e62c42300acb4;hpb=c3b4eaf29946349ff058691db2dcb615a5379bb2 diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index 603938e115..0dad311230 100644 --- a/inc/modules/member/what-themes.php +++ b/inc/modules/member/what-themes.php @@ -46,14 +46,17 @@ if (!defined('__SECURITY')) { addYouAreHereLink('member', __FILE__); if ((!isExtensionActive('theme')) && (!isAdmin())) { - loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('theme')); + displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=theme%}'); return; } // END - if if (isPostRequestParameterSet('member_theme')) { // Save theme to member's profile SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `curr_theme`='%s' WHERE `userid`=%s LIMIT 1", - array(postRequestParameter('member_theme'), getMemberId()), __FILE__, __LINE__); + array( + postRequestParameter('member_theme'), + getMemberId() + ), __FILE__, __LINE__); // Set new theme for guests $newTheme = SQL_ESCAPE(postRequestParameter('member_theme')); @@ -62,11 +65,11 @@ if (isPostRequestParameterSet('member_theme')) { setTheme($newTheme); // Theme saved! - loadTemplate('admin_settings_saved', false, '{--MEMBER_THEME_SAVED--}'); + displayMessage('{--MEMBER_THEME_SAVED--}'); } // END - if // Initialize array -$THEMES = array( +$themes = array( 'theme_unix' => array(), // Unix name from filesystem 'theme_name' => array(), // Title 'theme_author' => array(), // Theme author's name @@ -89,12 +92,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_version'][] = $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 @@ -102,11 +105,11 @@ foreach ($includes as $inc) { 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 = ''; -foreach ($THEMES['theme_unix'] as $key => $unix) { +foreach ($themes['theme_unix'] as $key => $unix) { $default = ''; if (getCurrentTheme() == $unix) { $default = ' checked="checked"'; @@ -116,11 +119,11 @@ foreach ($THEMES['theme_unix'] as $key => $unix) { $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] + '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 @@ -131,7 +134,7 @@ if (empty($OUT)) { // No themes found??? $OUT = ' - ' . loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_THEMES_FOUND--}') . ' + ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', true) . ' '; } // END - if