X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=762b64dc6f85956ee23775aee58113aba5c6fc20;hp=e298d8789bed5b23ffd56bdc253b7c5252c39bb0;hb=61621983cc6d7195fcc7eab29b5f6080ff283b34;hpb=04b69ac9f33369cbf654396c4a42cb1fff710ff4 diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index e298d8789b..762b64dc6f 100644 --- a/inc/modules/member/what-themes.php +++ b/inc/modules/member/what-themes.php @@ -14,12 +14,10 @@ * $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 * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -39,36 +37,39 @@ // Some security stuff... if (!defined('__SECURITY')) { - die(); + exit(); } elseif (!isMember()) { redirectToIndexMemberOnlyModule(); } // Add description as navigation point -addMenuDescription('member', __FILE__); +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')) { +if (isPostRequestElementSet('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__); + sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `curr_theme`='%s' WHERE `userid`=%s LIMIT 1", + array( + postRequestElement('member_theme'), + getMemberId() + ), __FILE__, __LINE__); // Set new theme for guests - $newTheme = SQL_ESCAPE(postRequestParameter('member_theme')); + $newTheme = sqlEscapeString(postRequestElement('member_theme')); // Change to new theme - setTheme($newTheme); + setMailerTheme($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 @@ -78,7 +79,7 @@ $THEMES = array( ); // Read directory "themes" -$includes = getArrayFromDirectory('theme/', '', false, true, array('css', 'images')); +$includes = getArrayFromDirectory('theme/', '', FALSE, TRUE, array('css', 'images')); // Walk through all entries and add it foreach ($includes as $inc) { @@ -91,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']; + 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 @@ -104,42 +105,42 @@ 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 = ''; $SW = 2; -foreach ($THEMES['theme_unix'] as $key => $unix) { +$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, '{--MEMBER_NO_THEMES_FOUND--}')." + $OUT = ' + + ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', TRUE) . ' -\n"; +'; } // END - if // Load template -loadTemplate('member_themes', false, $OUT); +loadTemplate('member_themes', FALSE, $OUT); // [EOF] ?>