]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-theme_import.php
More rewrites to make use of (cached) wrapper functions
[mailer.git] / inc / modules / admin / what-theme_import.php
index 67114b6865573269616c192047d7f765ace1cae9..baf910dfef22880922b3e5d399c33cf61b1286b3 100644 (file)
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -98,7 +99,7 @@ $THEMES = array(
        'theme_author' => array(), // Theme author's name
        'theme_email'  => array(), // Author's email address
        'theme_url'    => array(), // URL were you can download it from
-       'theme_ver'    => array(), // Version number of theme
+       'theme_version'    => array(), // Version number of theme
 );
 
 // Read directory "themes"
@@ -118,14 +119,14 @@ foreach ($includes as $inc) {
        $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'];
+       $THEMES['theme_version'][]    = $GLOBALS['theme_data']['version'];
 } // END - while
 
 // Sort array by Uni* name
 array_pk_sort($THEMES, array('theme_name'));
 
 // Generate output lines for the template
-$OUT = ''; $SW = 2;
+$OUT = '';
 foreach ($THEMES['theme_unix'] as $key => $unix) {
        // Already installed is default
        $formContent = '<div class="admin_note">' . getMaskedMessage('ADMIN_THEME_ALREADY_INSTALLED', $unix) . '</div>';
@@ -138,27 +139,22 @@ foreach ($THEMES['theme_unix'] as $key => $unix) {
 
        // Prepare content
        $content = array(
-               'sw'      => $SW,
-               'unix'    => $unix,
-               'name'    => $THEMES['theme_name'][$key],
-               'email'   => $THEMES['theme_email'][$key],
-               'author'  => $THEMES['theme_author'][$key],
-               'link'    => generateDerefererUrl($THEMES['theme_url'][$key]),
-               'url'     => $THEMES['theme_url'][$key],
-               'version' => $THEMES['theme_ver'][$key],
-               'form'    => $formContent
+               'unix'          => $unix,
+               'theme_name'    => $THEMES['theme_name'][$key],
+               'theme_email'   => $THEMES['theme_email'][$key],
+               'theme_author'  => $THEMES['theme_author'][$key],
+               'theme_url'     => $THEMES['theme_url'][$key],
+               'theme_version' => $THEMES['theme_version'][$key],
+               'form_content'  => $formContent
        );
 
        // Add row template
        $OUT .= loadTemplate('admin_theme_import_row', true, $content);
-
-       // Switch color
-       $SW = 3 - $SW;
 } // END - foreach
 
 if (empty($OUT)) {
        // No themes found???
-       $OUT .= loadTemplate('admin_theme_import_none', true, loadTemplate('admin_settings_saved', true, getMessage('ADMIN_NO_THEMES_FOUND')));
+       $OUT .= loadTemplate('admin_theme_import_none', true, loadTemplate('admin_settings_saved', true, '{--ADMIN_NO_THEMES_FOUND--}'));
 } // END - if
 
 // Load template