X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_import.php;h=f783bd04a98266928a10beddc974abedc22840b8;hb=0e269568bd666186509e98594e83bac199ac26da;hp=bced27d6a8f2ceaf1245c861a6cac461747ef081;hpb=414570c5081d337bb6c28dcf521bd8bca02f69e7;p=mailer.git diff --git a/inc/modules/admin/what-theme_import.php b/inc/modules/admin/what-theme_import.php index bced27d6a8..f783bd04a9 100644 --- a/inc/modules/admin/what-theme_import.php +++ b/inc/modules/admin/what-theme_import.php @@ -10,14 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Importieren von neuen Themes * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $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 * @@ -37,51 +37,58 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); -} elseif (!EXT_IS_ACTIVE("theme")) { - addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "theme"); - return; -} +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); +} // END - if // Add description as navigation point -ADD_DESCR("admin", __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 (REQUEST_ISSET_POST(('theme'))) { +if (isPostRequestElementSet('theme')) { // Check if theme is there - if (!THEME_CHECK_EXIST(REQUEST_POST('theme'))) { + if (!ifThemeExists(postRequestElement('theme'))) { // Import theme - $INC = sprintf("theme/%s/theme.php", SQL_ESCAPE(REQUEST_POST('theme'))); - if (INCLUDE_READABLE($INC)) { + $inc = sprintf("theme/%s/theme.php", SQL_ESCAPE(postRequestElement('theme'))); + + // Is the theme readable? + if (isIncludeReadable($inc)) { // Load the theme header file - LOAD_INC($INC); + loadInclude($inc); // Register it ith the exchange - SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_themes` (`theme_path`, `theme_active`, `theme_ver`, `theme_name`) + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_themes` (`theme_path`,`theme_active`,`theme_ver`,`theme_name`) VALUES ('%s','N','%s','%s')", - array(REQUEST_POST('theme'), $THEME_VERSION, $THEME_NAME), __FILE__, __LINE__); + array( + postRequestElement('theme'), + $GLOBALS['theme_data']['version'], + $GLOBALS['theme_data']['name'] + ), __FILE__, __LINE__); // Destroy cache - rebuildCacheFiles("themes", "them"); + rebuildCacheFile('themes', 'them'); // Prepare message - $msg = ADMIN_THEME_IMPORTED_1.REQUEST_POST('theme').ADMIN_THEME_IMPORTED_2; + $message = sprintf(getMessage('ADMIN_THEME_IMPORTED'), postRequestElement('theme')); } else { // Include file not found! - $msg = ADMIN_THEME_INC_404_1.REQUEST_POST('theme').ADMIN_THEME_INC_404_2; + $message = sprintf(getMessage('ADMIN_THEME_INC_404'), postRequestElement('theme')); } } else { // Theme already imported - $msg = ADMIN_THEME_ALREADY_1.REQUEST_POST('theme').ADMIN_THEME_ALREADY_2; + $message = sprintf(getMessage('ADMIN_THEME_ALREADY_INSTALLED'), postRequestElement('theme')); } // Output message - LOAD_TEMPLATE("admin_settings_saved", false, $msg); + loadTemplate('admin_settings_saved', false, $message); } // END - if // Initialize array @@ -95,42 +102,38 @@ $THEMES = array( ); // Read directory "themes" -$handle = opendir(constant('PATH')."theme/") or mxchange_die("Cannot read themes dir!"); -while ($dir = readdir($handle)) { - // Construct absolute theme.php file name - $INC = sprintf("theme/%s/theme.php", $dir); - - // Test it... - if (($dir != ".") && ($dir != "..") && (INCLUDE_READABLE($INC))) { - // Found a valid directory so let's load it's theme.php file - LOAD_INC($INC); - - // 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; - } // END - if +$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 -// Close directory -closedir($handle); - // 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; +$OUT = ''; $SW = 2; foreach ($THEMES['theme_unix'] as $key => $unix) { // Already installed is default - $FOUND = "
{--ADMIN_THEME_ALREADY_INSTALLED--}
"; + $formContent = '
' . sprintf(getMessage('ADMIN_THEME_ALREADY_INSTALLED'), $unix) . '
'; // Check if current theme is already imported or not - if (!THEME_CHECK_EXIST($unix)) { + if (!ifThemeExists($unix)) { // Theme not installed - $FOUND = LOAD_TEMPLATE("admin_theme_import_form", true, $unix); + $formContent = loadTemplate('admin_theme_import_form', true, $unix); } // END - if // Prepare content @@ -140,14 +143,14 @@ foreach ($THEMES['theme_unix'] as $key => $unix) { 'name' => $THEMES['theme_name'][$key], 'email' => $THEMES['theme_email'][$key], 'author' => $THEMES['theme_author'][$key], - 'link' => DEREFERER($THEMES['theme_url'][$key]), + 'link' => generateDerefererUrl($THEMES['theme_url'][$key]), 'url' => $THEMES['theme_url'][$key], 'version' => $THEMES['theme_ver'][$key], - 'form' => $FOUND + 'form' => $formContent ); // Add row template - $OUT .= LOAD_TEMPLATE("admin_theme_import_row", true, $content); + $OUT .= loadTemplate('admin_theme_import_row', true, $content); // Switch color $SW = 3 - $SW; @@ -155,14 +158,11 @@ foreach ($THEMES['theme_unix'] as $key => $unix) { if (empty($OUT)) { // No themes found??? - $OUT .= LOAD_TEMPLATE("admin_theme_import_none", true, LOAD_TEMPLATE("admin_settings_saved", true, getMessage('ADMIN_NO_THEMES_FOUND'))); + $OUT .= loadTemplate('admin_theme_import_none', true, loadTemplate('admin_settings_saved', true, getMessage('ADMIN_NO_THEMES_FOUND'))); } // END - if -// Set the generated list -define('__THEME_LIST', $OUT); - // Load template -LOAD_TEMPLATE("admin_theme_import"); +loadTemplate('admin_theme_import', false, $OUT); -// +// [EOF] ?>