A lot has been rewritten, ext-teams added, ext-forced continued:
[mailer.git] / inc / modules / admin / what-theme_import.php
index d075327bfec9d4ec9a051f00afbc4add61b7ed84..c3665f9881913dd9487e66fb3db205dca33b5389 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 02/12/2004 *
- * ================                             Last change: 11/12/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 02/12/2004 *
+ * ===================                          Last change: 11/12/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-theme_import.php                            *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Importieren von neuen Themes                     *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!is_admin())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+addYouAreHereLink('admin', __FILE__);
 
 // Switch to testing mode
-$THEME_MODE = "test";
+$GLOBALS['theme_mode'] = 'test';
 
 // Import selected theme if not present
-if (!empty($_POST['theme'])) {
+if (isPostRequestParameterSet('theme')) {
        // Check if theme is there
-       if (!THEME_CHECK_EXIST($_POST['theme'])) {
+       if (!ifThemeExists(postRequestParameter('theme'))) {
                // Import theme
-               $file = sprintf("%stheme/%s/theme.php", PATH, SQL_ESCAPE($_POST['theme']));
-               if (FILE_READABLE($file)) {
+               $inc = sprintf("theme/%s/theme.php", SQL_ESCAPE(postRequestParameter('theme')));
+
+               // Is the theme readable?
+               if (isIncludeReadable($inc)) {
                        // Load the theme header file
-                       include($file);
+                       loadInclude($inc);
 
                        // Register it ith the exchange
-                       $result = 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($_POST['theme'], $THEME_VERSION, $THEME_NAME), __FILE__, __LINE__);
+                               array(
+                                       postRequestParameter('theme'),
+                                       $GLOBALS['theme_data']['version'],
+                                       $GLOBALS['theme_data']['name']
+                               ), __FILE__, __LINE__);
 
                        // Destroy cache
-                       REBUILD_CACHE("themes", "them");
+                       rebuildCache('themes', 'them');
 
                        // Prepare message
-                       $msg = ADMIN_THEME_IMPORTED_1.$_POST['theme'].ADMIN_THEME_IMPORTED_2;
+                       $message = '{%message,ADMIN_THEME_IMPORTED=' . postRequestParameter('theme') . '%}';
                } else {
-                       // Include file not found!
-                       $msg = ADMIN_THEME_INC_404_1.$_POST['theme'].ADMIN_THEME_INC_404_2;
+                       // Include file not found
+                       $message = '{%message,ADMIN_THEME_INC_404=' . postRequestParameter('theme') . '%}';
                }
        } else {
                // Theme already imported
-               $msg = ADMIN_THEME_ALREADY_1.$_POST['theme'].ADMIN_THEME_ALREADY_2;
+               $message = '{%message,ADMIN_THEME_ALREADY_INSTALLED=' . postRequestParameter('theme') . '%}';
        }
 
        // Output message
-       LOAD_TEMPLATE("admin_settings_saved", false, $msg);
-       OUTPUT_HTML("<br />");
+       displayMessage($message);
 } // END - if
 
 // Initialize array
-$THEMES = array(
-       'theme_unix'   => array(), // Unix name from filesystem
-       'theme_name'   => array(), // Title
-       '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
+$themes = array(
+       'theme_unix'    => array(), // Unix name from filesystem
+       'theme_name'    => array(), // Title
+       '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_version' => array(), // Version number of theme
 );
 
 // Read directory "themes"
-$handle = opendir(PATH."theme/") or mxchange_die("Cannot read themes dir!");
-while ($dir = readdir($handle)) {
-       // Construct absolute theme.php file name
-       $theme = sprintf("%stheme/%s/theme.php", PATH, $dir);
-
-       // Test it...
-       if (($dir != ".") && ($dir != "..") && (FILE_READABLE($theme))) {
-               // Found a valid directory so let's load it's theme.php file
-               include($theme);
-
-               // Add found theme to array
-               $THEMES['theme_unix'][]   = $dir;
-               $THEMES['theme_name'][]   = $THEME_NAME;
-               $THEMES['theme_author'][] = $THEME_AUTHOR;
-               $THEMES['theme_email'][]  = $THEME_EMAIL;
-               $THEMES['theme_url'][]    = $THEME_URL;
-               $THEMES['theme_ver'][]    = $THEME_VERSION;
-       } // END - if
+$includes = getArrayFromDirectory('theme/', '', false, true, array('css', 'images'));
+
+// Walk through all entries and add it
+foreach ($includes as $inc) {
+       // Get directory from it
+       $dir = basename(dirname($inc));
+
+       // Load include file
+       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'];
 } // END - while
 
-// Close directory
-closedir($handle);
-
 // Sort array by Uni* name
-array_pk_sort($THEMES, array("theme_name"));
+array_pk_sort($themes, array('theme_name'));
 
 // Generate output lines for the template
-$OUT = ""; $SW = 2;
-foreach ($THEMES['theme_unix'] as $key => $unix) {
+$OUT = '';
+foreach ($themes['theme_unix'] as $key => $unix) {
+       // Already installed is default
+       $formContent = '<div class="notice">{%message,ADMIN_THEME_ALREADY_INSTALLED=' . $unix . '%}</div>';
+
        // Check if current theme is already imported or not
-       if (THEME_CHECK_EXIST($unix)) {
-               // Already installed
-               $FOUND = "<FONT class=\"admin_note\">".ADMIN_THEME_ALREADY_INSTALLED."</FONT>";
-       } else {
+       if (!ifThemeExists($unix)) {
                // Theme not installed
-               $FOUND = "<FORM action=\"".URL."/modules.php?module=admin&amp;what=theme_import\" method=\"POST\">
-  <INPUT type=\"submit\" name=\"ok\" class=\"admin_submit\" value=\"".ADMIN_INSTALL_THEME."\">
-  <INPUT type=\"hidden\" name=\"theme\" value=\"".$unix."\">
-</FORM>";
-       }
+               $formContent = loadTemplate('admin_import_theme_form', true, $unix);
+       } // END - if
 
-       // Add row
-       $OUT .= "<TR>
-  <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\" height=\"30\">".$unix."</TD>
-  <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">".$THEMES['theme_name'][$key]."</TD>
-  <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
-    <A href=\"mailto:".$THEMES['theme_email'][$key]."?Subject=[Theme:] ".$THEMES['theme_name'][$key]." (".$unix.")"."\">".$THEMES['theme_author'][$key]."</A>
-  </TD>
-  <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
-    <A href=\"".DEREFERER($THEMES['theme_url'][$key])."\" target=\"_blank\">".$THEMES['theme_url'][$key]."</A>
-  </TD>
-  <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">v".$THEMES['theme_ver'][$key]."</TD>
-  <TD class=\"switch_sw".$SW." bottom2\" align=\"center\">
-    ".$FOUND."
-  </TD>
-</TR>\n";
-
-       // Switch color
-       $SW = 3 - $SW;
-}
+       // Prepare content
+       $content = array(
+               '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_import_theme_row', true, $content);
+} // END - foreach
 
 if (empty($OUT)) {
        // No themes found???
-       $OUT .= "<TR>
-  <TD colspan=\"6\" class=\"bottom2\" height=\"80\">
-    ".LOAD_TEMPLATE("admin_settings_saved", true, ADMIN_NO_THEMES_FOUND)."
-  </TD>
-</TR>\n";
+       $OUT .= loadTemplate('admin_import_theme_none', true, displayMessage('{--ADMIN_NO_THEMES_FOUND--}', true));
 } // END - if
-define('__THEME_LIST', $OUT);
 
 // Load template
-LOAD_TEMPLATE("admin_theme_import");
+loadTemplate('admin_import_theme', false, $OUT);
 
-//
+// [EOF]
 ?>