]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-theme_check.php
CSS classes rewritten to ids to let JavaScript insert more values. Some wrappers...
[mailer.git] / inc / modules / admin / what-theme_check.php
index c538c9fbd0291e96a800db681e95d8942b5abe67..f7023c24023b4daf4b1551c3469fcc2e82f83e4d 100644 (file)
  * -------------------------------------------------------------------- *
  * 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                  *
 
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+ADD_DESCR('admin', __FILE__);
 
 // Normally we want the overview of all registered theme_check
-$mode = "overview";
+$mode = 'overview';
 $SEL = 0;
 
 // Get response from our server
-$response = GET_URL("check-themes.php");
+$response = sendGetRequest('check-themes.php');
 
 // Are theme_check found?
 if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) {
@@ -62,7 +67,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) {
        // Get count of theme_check for validation
        $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")) {
@@ -74,7 +79,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) {
                        $cver = THEME_GET_VERSION($name);
 
                        // Is the theme already installed or not?
-                       if (($ver != $cver) && ($cver != "?") && ($cver != "!")) {
+                       if (($ver != $cver) && ($cver != '?') && ($cver != '!')) {
                                // No, it isn't. So let's add this one!
                                $THEMES['fname'][]  = $name;
                                $THEMES['fsize'][]  = $response[$idx + 1];
@@ -90,7 +95,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) {
                                // Trim every data line
                                foreach ($LANG_DUMMY as $k => $v) {
                                        $v = trim($v);
-                                       if (substr($v, 3) == "") $v = "---";
+                                       if (substr($v, 3) == '') $v = '---';
                                        $LANG_DUMMY[$k] = $v;
                                        if ($v == "xx:xx") break;
                                        $LANG[] = $v;
@@ -98,7 +103,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) {
 
                                // 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; }
+                                       if (substr($search, 0, 3) == (getLanguage().':')) { $INFO = substr($search, 3); break; }
                                } // END - foreach
 
                                // Add informations to array
@@ -113,7 +118,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) {
                array_pk_sort($THEMES, array("cver", "fname"), 0, 1);
 
                // Extensions where found which are not downloaded and installed
-               $OUT = ""; $SW = 2; $TSIZE = 0;
+               $OUT = ''; $SW = 2; $TSIZE = 0;
                foreach ($THEMES['fname'] as $idx => $name) {
                        // Generate download link
                        $LINK = SERVER_URL."/themes/theme-".$name.".zip";
@@ -122,8 +127,8 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) {
                        $OUT .= "<tr>
   <td align=\"center\" class=\"switch_sw".$SW." bottom2 right2\">".($idx + 1).".</td>
   <td align=\"center\" class=\"switch_sw".$SW." bottom2 right2\"><a href=\"".$LINK."\">".$name."</a></td>
-  <td align=\"center\" class=\"switch_sw".$SW." bottom2 right2\">".MAKE_DATETIME($THEMES['fctime'][$idx], "2")."</td>
-  <td align=\"center\" class=\"switch_sw".$SW." bottom2 right2\">".TRANSLATE_COMMA(round($THEMES['fsize'][$idx] / 1.024) / 1000)." ".KBYTES."</td>
+  <td align=\"center\" class=\"switch_sw".$SW." bottom2 right2\">".generateDateTime($THEMES['fctime'][$idx], '2')."</td>
+  <td align=\"center\" class=\"switch_sw".$SW." bottom2 right2\">".translateComma(round($THEMES['fsize'][$idx] / 1.024) / 1000)." ".KBYTES."</td>
   <td align=\"center\" class=\"switch_sw".$SW." bottom2\">".$THEMES['ver'][$idx]." (".$THEMES['cver'][$idx].")</td>
 </tr>
 <tr>
@@ -136,7 +141,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) {
                        $SW = 3 - $SW;
                }
                define('__THEMES_ROWS', $OUT);
-               define('__TKBYTES_VALUE', TRANSLATE_COMMA(round($TSIZE / 1.024) / 1000));
+               define('__TKBYTES_VALUE', translateComma(round($TSIZE / 1.024) / 1000));
                define('__TTHEME_VALUE', count($THEMES['fname']));
 
                // Load template
@@ -147,7 +152,7 @@ if (($response[count($response) - 1] == "[EOF]") && ($response[0] != "[EOF]")) {
        }
 } else {
        // No theme where found
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_THEME_NOTHING_FOUND'));
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_THEME_NOTHING_FOUND'));
 }
 
 //