X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_check.php;h=8d306e6765f01995ff3c2184d0b963d73fefb93a;hp=83aac95704784b0e5722b7e3166d8dc424249f5e;hb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;hpb=75ad748a68473ace540251427a74fb781b1145e9 diff --git a/inc/modules/admin/what-theme_check.php b/inc/modules/admin/what-theme_check.php index 83aac95704..8d306e6765 100644 --- a/inc/modules/admin/what-theme_check.php +++ b/inc/modules/admin/what-theme_check.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Erweiterungen-Management * * -------------------------------------------------------------------- * - * * + * $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 * @@ -32,26 +37,23 @@ ************************************************************************/ // Some security stuff... -if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN())) -{ - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; +if ((!defined('__SECURITY')) || (!IS_ADMIN())) { + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } -// Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); -global $CACHE, $KEEP_ACTIVE, $CACHE_FILE; +// Add description as navigation point +ADD_DESCR('admin', __FILE__); // Normally we want the overview of all registered theme_check $mode = "overview"; -$SEL = "0"; +$SEL = 0; // Get response from our server -$response = MXCHANGE_OPEN("check-themes.php"); +$response = GET_URL("check-themes.php"); // Are theme_check found? -if (($response[sizeof($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) -{ +if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) { // Ok, mark found and create the array $THEMES = array( 'fname' => array(), // File names @@ -63,27 +65,21 @@ if (($response[sizeof($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) ); // Get count of theme_check for validation - $count = trim($response[sizeof($response) - 2]); - foreach ($response as $idx=>$value) - { - $value = str_replace("\n", "", $value); $ver = ""; + $count = trim($response[count($response) - 2]); + foreach ($response as $idx => $value) { + $value = str_replace("\n", '', $value); $ver = ''; // Leave loop when data is invalid or EOF? - if ((substr($value, 0, 6) == "theme-") && (substr($value, -4) == ".zip")) - { + if ((substr($value, 0, 6) == "theme-") && (substr($value, -4) == ".zip")) { + // Extract name and version $name = substr($value, 6, -4); - $file = PATH."themes/".$name."/theme.php"; - $ver = trim(substr($response[$idx + 3], 4)); + $ver = trim(substr($response[$idx + 3], 4)); // Load version - $result = SQL_QUERY_ESC("SELECT theme_ver FROM "._MYSQL_PREFIX."_themes WHERE theme_path='%s' LIMIT 1", - array($name), __FILE__, __LINE__); - list($cver) = SQL_FETCHROW($result); - if (empty($cver)) $cver = "-.-"; - - // Is the extension already installed or not? - if (((SQL_NUMROWS($result) == 0) && (!file_exists($file))) || ($ver != $cver)) - { + $cver = THEME_GET_VERSION($name); + + // Is the theme already installed or not? + if (($ver != $cver) && ($cver != "?") && ($cver != "!")) { // No, it isn't. So let's add this one! $THEMES['fname'][] = $name; $THEMES['fsize'][] = $response[$idx + 1]; @@ -91,77 +87,73 @@ if (($response[sizeof($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) $THEMES['ver'][] = $ver; $THEMES['cver'][] = $cver; + // Extract language strings from reponse $LANG_DUMMY = explode("[nl]", $response[$idx + 4]); $LANG = array(); - $INFO = ADMIN_EXT_NO_INFO_FOUND; + $INFO = getMessage('ADMIN_EXT_NO_INFO_FOUND'); // Trim every data line - foreach ($LANG_DUMMY as $k=>$v) - { + foreach ($LANG_DUMMY as $k => $v) { $v = trim($v); if (substr($v, 3) == "") $v = "---"; $LANG_DUMMY[$k] = $v; if ($v == "xx:xx") break; $LANG[] = $v; - } + } // END - foreach // If language is found stop searching on matching line - foreach($LANG as $search) - { + foreach($LANG as $search) { if (substr($search, 0, 3) == (GET_LANGUAGE().":")) { $INFO = substr($search, 3); break; } - } + } // END - foreach // Add informations to array $THEMES['infos'][] = $INFO; - } - } - } + } // END - if + } // END - if + } // END - foreach // Ok, themes are on our server but maybe you have already installed them? - if (sizeof($THEMES['fname']) > 0) - { + if (count($THEMES['fname']) > 0) { // Sort array (I missed ver and cver here) array_pk_sort($THEMES, array("cver", "fname"), 0, 1); // Extensions where found which are not downloaded and installed - $SW = 2; $OUT = ""; $TSIZE = 0; - foreach ($THEMES['fname'] as $idx=>$name) - { + $OUT = ''; $SW = 2; $TSIZE = 0; + foreach ($THEMES['fname'] as $idx => $name) { // Generate download link $LINK = SERVER_URL."/themes/theme-".$name.".zip"; - $OUT .= " - ".($idx + 1).". - ".$name." - ".MAKE_DATETIME($THEMES['fctime'][$idx], "2")." - ".TRANSLATE_COMMA(round($THEMES['fsize'][$idx] / 1.024) / 1000)." ".KBYTES." - ".$THEMES['ver'][$idx]." (".$THEMES['cver'][$idx].") - - -   - - ".stripslashes($THEMES['infos'][$idx])." - -\n"; + + // @TODO Move this HTML code to a template "admin_theme_row" + $OUT .= " + ".($idx + 1).". + ".$name." + ".MAKE_DATETIME($THEMES['fctime'][$idx], "2")." + ".TRANSLATE_COMMA(round($THEMES['fsize'][$idx] / 1.024) / 1000)." ".KBYTES." + ".$THEMES['ver'][$idx]." (".$THEMES['cver'][$idx].") + + +   + +
".$THEMES['infos'][$idx]."
+ +\n"; $TSIZE += $THEMES['fsize'][$idx]; $SW = 3 - $SW; } define('__THEMES_ROWS', $OUT); define('__TKBYTES_VALUE', TRANSLATE_COMMA(round($TSIZE / 1.024) / 1000)); - define('__TTHEME_VALUE', sizeof($THEMES['fname'])); + define('__TTHEME_VALUE', count($THEMES['fname'])); // Load template LOAD_TEMPLATE("admin_theme_list"); - } - else - { + } else { // All Themes are downloaded and installed LOAD_TEMPLATE("admin_theme_installed", false, $count); } -} - else -{ +} else { // No theme where found - LOAD_TEMPLATE("admin_theme_404"); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_THEME_NOTHING_FOUND')); } + // ?>