X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Ftheme_functions.php;h=ff9e5e3497297cb6348b51c708204abd1b3f3da5;hp=0169427c732fbd194ce85e069fa677035cfd0a5d;hb=5071030af40e69ca4284642f44758964e18f5be8;hpb=3b7577d3b3e6522d8898ed1799031b6de696accc diff --git a/inc/libs/theme_functions.php b/inc/libs/theme_functions.php index 0169427c73..ff9e5e3497 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,76 +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); } -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 .= "