X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_import.php;h=5c8671e86f6db8d3e90c7705882554c95a1f2815;hb=4f7df133f736da124e6f7bd02008b9093f736451;hp=f27b59a34726e5d903c9be607b2fb81be8de5b7a;hpb=2379934be6a196a54f4155bb8e24c49b20736969;p=mailer.git diff --git a/inc/modules/admin/what-theme_import.php b/inc/modules/admin/what-theme_import.php index f27b59a347..5c8671e86f 100644 --- a/inc/modules/admin/what-theme_import.php +++ b/inc/modules/admin/what-theme_import.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 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 * @@ -37,7 +37,7 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!isAdmin())) { - die(); + exit(); } // END - if // Add description as navigation point @@ -59,7 +59,7 @@ if (isPostRequestElementSet('theme')) { 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( postRequestElement('theme'), @@ -96,7 +96,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) { @@ -107,12 +107,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 - while // Sort array by Uni* name @@ -127,7 +127,7 @@ foreach ($themes['theme_unix'] as $key => $unix) { // Check if current theme is already imported or not if (!ifThemeExists($unix)) { // Theme not installed - $formContent = loadTemplate('admin_import_theme_form', true, $unix); + $formContent = loadTemplate('admin_import_theme_form', TRUE, $unix); } // END - if // Prepare content @@ -142,16 +142,16 @@ foreach ($themes['theme_unix'] as $key => $unix) { ); // Add row template - $OUT .= loadTemplate('admin_import_theme_row', true, $content); + $OUT .= loadTemplate('admin_import_theme_row', TRUE, $content); } // END - foreach if (empty($OUT)) { // No themes found??? - $OUT .= loadTemplate('admin_import_theme_none', true, displayMessage('{--ADMIN_NO_THEMES_FOUND--}', true)); + $OUT .= loadTemplate('admin_import_theme_none', TRUE, displayMessage('{--ADMIN_NO_THEMES_FOUND--}', TRUE)); } // END - if // Load template -loadTemplate('admin_import_theme', false, $OUT); +loadTemplate('admin_import_theme', FALSE, $OUT); // [EOF] ?>