]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_home.php
Renamed a lot language strings to new naming convention, first english translation...
[mailer.git] / inc / modules / admin / what-config_home.php
index 106ed65c428fa0af472f3144a7f9be2aaee2de8f..c025ddcbb714b7c7192e35ac4640f4cb4a9d6e56 100644 (file)
  * $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 - 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')) || (!isAdmin())) {
        die();
-}
+} // END - if
 
 // Add description as navigation point
-addMenuDescription('admin', __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
 // Init 'sub' value
 $sub = '';
@@ -55,7 +54,7 @@ switch ($sub) {
                        adminSaveSettingsFromPostData();
 
                        // Display continue link
-                       loadTemplate('admin_settings_saved', false, '<a href="{%url=modules.php?module=admin&amp;what=config_home&amp;sub=settings%}">{--ADMIN_CONTINUE_TO_CONFIG--}</a>');
+                       displayMessage('<a href="{%url=modules.php?module=admin&amp;what=config_home&amp;sub=settings%}">{--ADMIN_CONTINUE_TO_CONFIG--}</a>');
                } else {
                        // Prepare data for the template
                        $content = array_fill(-1, 60, '');
@@ -70,9 +69,9 @@ switch ($sub) {
                break;
 
        case 'target': // Set which what-file will be placed in home-page (only modules.php?module=index)
-               if (isGetRequestParameterSet(('home'))) {
+               if (isGetRequestParameterSet('home')) {
                        // Set new home
-                       updateConfiguration('index_home', getRequestParameter(('home')));
+                       updateConfiguration('index_home', getRequestParameter('home'));
                } // END - if
 
                // Load all what menu points
@@ -82,7 +81,6 @@ WHERE `action`='main' AND `what` != '' AND `what` IS NOT NULL AND `locked`='N'
 ORDER BY `sort` ASC", __FILE__, __LINE__);
 
                // Init variables
-               $SW = 2;
                $OUT = '';
 
                // Process all entries
@@ -91,21 +89,17 @@ ORDER BY `sort` ASC", __FILE__, __LINE__);
                        $newHomeLink = '<a href="{%url=modules.php?module=admin&amp;what=config_home&amp;sub=target&amp;home=' . $content['what'] . '%}">{--_IS_NEW_HOME--}</a>';
 
                        // Is this current home?
-                       if ($content['what'] == getConfig('index_home')) {
+                       if ($content['what'] == getIndexHome()) {
                                // Is current home
                                $newHomeLink      = '<div class="admin_mark">{--_IS_CURRENT_HOME--}</div>';
                                $content['title'] = '<div class="admin_mark">' . $content['title'] . '</div>';
                        } // END - if
 
                        // Prepare content
-                       $content['sw'] = $SW;
                        $content['link'] = $newHomeLink;
 
                        // Load row template
                        $OUT .= loadTemplate('admin_config_home_row', true, $content);
-
-                       // Switch color
-                       $SW = 3 - $SW;
                } // END - while
 
                // Free memory
@@ -118,8 +112,7 @@ ORDER BY `sort` ASC", __FILE__, __LINE__);
        default: // Output selection table
                loadTemplate('admin_config_home_main');
                break;
-
-}
+} // END - switch
 
 // [EOF]
 ?>