X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_import.php;h=f783bd04a98266928a10beddc974abedc22840b8;hp=775f6f493f5b6f48ed51af0fce29b9639601ea4d;hb=d3c4fdd9bfab35389e1a5ff48f3952d527c7b4bb;hpb=d18075f375db1b9db40773cdf80a5d6f2c36cd3a diff --git a/inc/modules/admin/what-theme_import.php b/inc/modules/admin/what-theme_import.php index 775f6f493f..f783bd04a9 100644 --- a/inc/modules/admin/what-theme_import.php +++ b/inc/modules/admin/what-theme_import.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Importieren von neuen Themes * * -------------------------------------------------------------------- * - * * + * $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 * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,52 +37,59 @@ ************************************************************************/ // Some security stuff... -if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!is_admin())) -{ - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); -} +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); +} // END - if // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +addMenuDescription('admin', __FILE__); + +if (!isExtensionActive('theme')) { + loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('theme')); + return; +} // END - if // Switch to testing mode -$THEME_MODE = "test"; +$GLOBALS['theme_mode'] = 'test'; // Import selected theme if not present -if (!empty($_POST['theme'])) -{ - $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_themes WHERE theme_path='%s' LIMIT 1", - array($_POST['theme']), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 0) - { +if (isPostRequestElementSet('theme')) { + // Check if theme is there + if (!ifThemeExists(postRequestElement('theme'))) { // Import theme - $file = sprintf("%stheme/%s/theme.php", PATH, SQL_ESCAPE($_POST['theme'])); - if ((file_exists($file)) && (is_readable($file))) { + $inc = sprintf("theme/%s/theme.php", SQL_ESCAPE(postRequestElement('theme'))); + + // Is the theme readable? + if (isIncludeReadable($inc)) { // Load the theme header file - include($file); + loadInclude($inc); // Register it ith the exchange - $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_themes (theme_path, theme_active, theme_ver) -VALUES ('%s', 'N', '%s')", - array($_POST['theme'], $THEME_VERSION), __FILE__, __LINE__); - $msg = ADMIN_THEME_IMPORTED_1.$_POST['theme'].ADMIN_THEME_IMPORTED_2; + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_themes` (`theme_path`,`theme_active`,`theme_ver`,`theme_name`) +VALUES ('%s','N','%s','%s')", + array( + postRequestElement('theme'), + $GLOBALS['theme_data']['version'], + $GLOBALS['theme_data']['name'] + ), __FILE__, __LINE__); + + // Destroy cache + rebuildCacheFile('themes', 'them'); + + // Prepare message + $message = sprintf(getMessage('ADMIN_THEME_IMPORTED'), postRequestElement('theme')); } else { // Include file not found! - $msg = ADMIN_THEME_INC_404_1.$_POST['theme'].ADMIN_THEME_INC_404_2; + $message = sprintf(getMessage('ADMIN_THEME_INC_404'), postRequestElement('theme')); } } else { - // Free memory - SQL_FREERESULT($result); - // Theme already imported - $msg = ADMIN_THEME_ALREADY_1.$_POST['theme'].ADMIN_THEME_ALREADY_2; + $message = sprintf(getMessage('ADMIN_THEME_ALREADY_INSTALLED'), postRequestElement('theme')); } // Output message - LOAD_TEMPLATE("admin_settings_saved", false, $msg); - OUTPUT_HTML("
"); -} + loadTemplate('admin_settings_saved', false, $message); +} // END - if // Initialize array $THEMES = array( @@ -90,80 +102,67 @@ $THEMES = array( ); // Read directory "themes" -$handle = opendir(PATH."theme/") or mxchange_die("Cannot read themes dir!"); -while ($dir = readdir($handle)) { - // Construct absolute theme.php file name - $theme = sprintf("%stheme/%s/theme.php", PATH, $dir); - - // Test it... - if (($dir != ".") && ($dir != "..") && (file_exists($theme)) && (is_readable($theme))) { - // Found a valid directory so let's load it's theme.php file - include($theme); - - // Add found theme to array - $THEMES['theme_unix'][] = $dir; - $THEMES['theme_name'][] = $THEME_NAME; - $THEMES['theme_author'][] = $THEME_AUTHOR; - $THEMES['theme_email'][] = $THEME_EMAIL; - $THEMES['theme_url'][] = $THEME_URL; - $THEMES['theme_ver'][] = $THEME_VERSION; - } -} -closedir($handle); +$includes = getArrayFromDirectory('theme/', '', false, true, array('css', 'images')); + +// Walk through all entries and add it +foreach ($includes as $inc) { + // Get directory from it + $dir = basename(dirname($inc)); + + // Load include file + 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_ver'][] = $GLOBALS['theme_data']['version']; +} // END - while // 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 = ''; $SW = 2; +foreach ($THEMES['theme_unix'] as $key => $unix) { + // Already installed is default + $formContent = '
' . sprintf(getMessage('ADMIN_THEME_ALREADY_INSTALLED'), $unix) . '
'; + // Check if current theme is already imported or not - $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_themes WHERE theme_path='%s' LIMIT 1", - array($unix), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) { - // Free memory - SQL_FREERESULT($result); - - // Already installed - $FOUND = "".ADMIN_THEME_ALREADY_INSTALLED.""; - } else { + if (!ifThemeExists($unix)) { // Theme not installed - $FOUND = "
- - -
"; - } - - // Add row - $OUT .= " - ".$unix." - ".$THEMES['theme_name'][$key]." - - ".$THEMES['theme_author'][$key]." - - - ".$THEMES['theme_url'][$key]." - - v".$THEMES['theme_ver'][$key]." - - ".$FOUND." - -\n"; + $formContent = loadTemplate('admin_theme_import_form', true, $unix); + } // END - if + + // Prepare content + $content = array( + 'sw' => $SW, + 'unix' => $unix, + 'name' => $THEMES['theme_name'][$key], + 'email' => $THEMES['theme_email'][$key], + 'author' => $THEMES['theme_author'][$key], + 'link' => generateDerefererUrl($THEMES['theme_url'][$key]), + 'url' => $THEMES['theme_url'][$key], + 'version' => $THEMES['theme_ver'][$key], + 'form' => $formContent + ); + + // Add row template + $OUT .= loadTemplate('admin_theme_import_row', true, $content); + + // Switch color $SW = 3 - $SW; -} +} // END - foreach if (empty($OUT)) { - // No themes found??? - $OUT .= " - - ".LOAD_TEMPLATE("admin_settings_saved", true, ADMIN_NO_THEMES_FOUND)." - -\n"; -} -define('__THEME_LIST', $OUT); + // No themes found??? + $OUT .= loadTemplate('admin_theme_import_none', true, loadTemplate('admin_settings_saved', true, getMessage('ADMIN_NO_THEMES_FOUND'))); +} // END - if // Load template -LOAD_TEMPLATE("admin_theme_import"); +loadTemplate('admin_theme_import', false, $OUT); -// +// [EOF] ?>