X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Ftheme_functions.php;h=44363a8c7cc42d1f8ebb72afc8e975ae7d4d5f09;hp=6fbcd9890409a194c3cdb3d73a69e7a9decbfb84;hb=f928ad2bed60fa256d0641eaf6d2c027a2944688;hpb=ad851a23313d8ac6489a759a0f3d62e3bc6f4682 diff --git a/inc/libs/theme_functions.php b/inc/libs/theme_functions.php index 6fbcd98904..44363a8c7c 100644 --- a/inc/libs/theme_functions.php +++ b/inc/libs/theme_functions.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Themen-Manager * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $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 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -33,132 +38,78 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } -// Always make sure the session management is initialized first -require_once(PATH."inc/session.php"); - -// Get current theme name -function GET_CURR_THEME() { - global $INC_POOL, $_CONFIG, $CSS, $cacheArray; - - // The default theme is 'default'... ;-) - $ret = "default"; - - // Load default theme if not empty from configuration - if (!empty($_CONFIG['default_theme'])) $ret = $_CONFIG['default_theme']; - - if (!isSessionVariableSet('mxchange_theme')) { - // Set default theme - set_session("mxchange_theme", $ret); - } elseif ((isSessionVariableSet('mxchange_theme')) && (GET_EXT_VERSION("sql_patches") >= "0.1.4")) { - //die("
".print_r($cacheArray['themes'], true)."
"); - // Get theme from cookie - $ret = get_session('mxchange_theme'); - - // Is it valid? - if (THEME_GET_ID($ret) == 0) { - // Fix it to default - $ret = "default"; - } // END - if - } elseif ((!isBooleanConstantAndTrue('mxchange_installed')) && ((isBooleanConstantAndTrue('mxchange_installing')) || ($CSS == true)) && ((!empty($_GET['theme'])) || (!empty($_POST['theme'])))) { - // Prepare FQFN for checking - $theme = sprintf("%stheme/%s/theme.php", PATH, SQL_ESCAPE($_GET['theme'])); - - // Installation mode active - if ((!empty($_GET['theme'])) && (FILE_READABLE($theme))) { - // Set cookie from URL data - set_session("mxchange_theme", $_GET['theme']); - } elseif (FILE_READABLE(sprintf("%stheme/%s/theme.php", PATH, SQL_ESCAPE($_POST['theme'])))) { - // Set cookie from posted data - set_session("mxchange_theme", $_POST['theme']); - } - - // Set return value - $ret = get_session('mxchange_theme'); - } else { - // Invalid design, reset cookie - set_session("mxchange_theme", $ret); - } - - // Add (maybe) found theme.php file to inclusion list - $theme = sprintf("%stheme/%s/theme.php", PATH, SQL_ESCAPE($ret)); - - // Try to load the requested include file - if (FILE_READABLE($theme)) $INC_POOL[] = $theme; - - // Return theme value - return $ret; -} - -function THEME_SELECTION_BOX($mod, $act, $wht, $result) { +// Create a selection box with installed and activated themes +function generateThemeSelectionBox ($mod, $act, $wht, $result) { // Construction URL - $FORM = URL."/modules.php?module=".$mod; - if (!empty($act)) $FORM .= "&action=".$act; - if (!empty($wht)) $FORM .= "&what=".$wht; - define('__FORM_VALUE', $FORM); + $formAction = "{!URL!}/modules.php?module=".$mod; + if (!empty($act)) $formAction .= "&action=".$act; + if (!empty($wht)) $formAction .= "&what=".$wht; // Initialize array - $THEMES = array( + $themesArray = array( 'theme_unix' => array(), // Unix name from filesystem 'theme_name' => array() // Title ); // Load all themes - while(list($theme) = SQL_FETCHROW($result)) { + while ($content = SQL_FETCHARRAY($result)) { // Load it's theme.php file - $INC = sprintf("%stheme/%s/theme.php", PATH, SQL_ESCAPE($theme)); - if (FILE_READABLE($INC)) { + $INC = sprintf("theme/%s/theme.php", SQL_ESCAPE($content['theme_path'])); + if (isIncludeReadable($INC)) { // And save all data in array - require($INC); - $THEMES['theme_unix'][] = $theme; - $THEMES['theme_name'][] = $THEME_NAME; + loadInclude($INC); + $themesArray['theme_unix'][] = $content['theme_path']; + $themesArray['theme_name'][] = $GLOBALS['theme_data']['name']; } // END - if } // END - while // Sort whole array by title - array_pk_sort($THEMES, array("theme_name")); + array_pk_sort($themesArray, array('theme_name')); // Construct selection form for the box template - $OUT = ""; - foreach ($THEMES['theme_unix'] as $key => $theme) { - $OUT .= "