X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_check.php;h=42910fe9f970b2dec095d52e09fa4ad757774634;hp=53ef7809ca23f50bc7c6e975c54b043d3ef47c1a;hb=4cec044b57773e28423261c71f918f3e22ca8a75;hpb=357b2ca133fc1f89db74097955c366cb4bee6996 diff --git a/inc/modules/admin/what-theme_check.php b/inc/modules/admin/what-theme_check.php index 53ef7809ca..42910fe9f9 100644 --- a/inc/modules/admin/what-theme_check.php +++ b/inc/modules/admin/what-theme_check.php @@ -1,7 +1,7 @@ array(), // File names 'fsize' => array(), // File size 'fctime' => array(), // File creation timestamp @@ -63,92 +63,96 @@ if (($response[sizeof($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) ); // Get count of theme_check for validation - $count = trim($response[sizeof($response) - 2]); + $count = trim($response[count($response) - 2]); foreach ($response as $idx => $value) { - $value = str_replace("\n", "", $value); $ver = ""; + $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 = sprintf("%sthemes/%s/theme.php", PATH, $name); $ver = trim(substr($response[$idx + 3], 4)); // Load version - $cver = THEME_GET_VERSION($name); + $cver = getThemeVersion($name); - // Is the extension already installed or not? - if (((SQL_NUMROWS($result) == 0) && (!FILE_READABLE($file))) || ($ver != $cver)) { + // 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]; - $THEMES['fctime'][] = $response[$idx + 2]; - $THEMES['ver'][] = $ver; - $THEMES['cver'][] = $cver; + $themes['fname'][] = $name; + $themes['fsize'][] = $response[$idx + 1]; + $themes['fctime'][] = $response[$idx + 2]; + $themes['ver'][] = $ver; + $themes['cver'][] = $cver; - $LANG_DUMMY = explode("[nl]", $response[$idx + 4]); - $LANG = array(); - $INFO = ADMIN_EXT_NO_INFO_FOUND; + // Extract language strings from reponse + $langDummy = explode('[nl]', $response[$idx + 4]); + $languages = array(); + $themeInfo = getMessage('ADMIN_EXT_NO_INFO_FOUND'); // Trim every data line - foreach ($LANG_DUMMY as $k => $v) { + foreach ($langDummy as $k => $v) { $v = trim($v); - if (substr($v, 3) == "") $v = "---"; - $LANG_DUMMY[$k] = $v; - if ($v == "xx:xx") break; - $LANG[] = $v; + if (substr($v, 3) == '') $v = '---'; + $langDummy[$k] = $v; + if ($v == 'xx:xx') break; + $languages[] = $v; } // END - foreach // If language is found stop searching on matching line - foreach($LANG as $search) { - if (substr($search, 0, 3) == (GET_LANGUAGE().":")) { $INFO = substr($search, 3); break; } + foreach($languages as $search) { + if (substr($search, 0, 3) == (getLanguage().':')) { $themeInfo = substr($search, 3); break; } } // END - foreach // Add informations to array - $THEMES['infos'][] = $INFO; + $themes['infos'][] = $themeInfo; } // 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); + 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) { - // 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].") - - -   - - ".$THEMES['infos'][$idx]." - -\n"; - $TSIZE += $THEMES['fsize'][$idx]; + $OUT = ''; $SW = 2; $totalSize = '0'; + foreach ($themes['fname'] as $idx => $name) { + // Prepare data + $content = array( + 'sw' => $SW, + 'index' => ($idx + 1), + 'name' => $name, + 'created' => generateDateTime($themes['fctime'][$idx], 2), + 'size' => translateComma(round($themes['fsize'][$idx] / 1.024) / 1000), + 'version' => $themes['ver'][$idx], + 'current' => $themes['cver'][$idx], + 'infos' => $themes['infos'][$idx], + ); + + // Load row template + $OUT .= loadTemplate('admin_list_theme_row', true, $content); + + // Add total size + $totalSize += $themes['fsize'][$idx]; + + // Switch color $SW = 3 - $SW; } - define('__THEMES_ROWS', $OUT); - define('__TKBYTES_VALUE', TRANSLATE_COMMA(round($TSIZE / 1.024) / 1000)); - define('__TTHEME_VALUE', sizeof($THEMES['fname'])); + $content['rows'] = $OUT; + $content['total'] = count($themes['fname']); + $content['kbytes'] = translateComma(round($totalSize / 1.024) / 1000); // Load template - LOAD_TEMPLATE("admin_theme_list"); + loadTemplate('admin_list_theme', false, $content); } else { // All Themes are downloaded and installed - LOAD_TEMPLATE("admin_theme_installed", false, $count); + loadTemplate('admin_theme_installed', false, $count); } } else { // No theme where found - LOAD_TEMPLATE("admin_theme_404"); + loadTemplate('admin_settings_saved', false, getMessage('ADMIN_THEME_NOTHING_FOUND')); } -// +// [EOF] ?>