]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_home.php
Updated copyright year.
[mailer.git] / inc / modules / admin / what-config_home.php
index fb80c90ea2e4b215092daaac0b7793c8780bbeba..84c54a3147f0a5bb1569b3ed7aef1c2c178e881b 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -45,13 +45,13 @@ addYouAreHereLink('admin', __FILE__);
 
 // Init 'sub' value
 $sub = '';
-if (isGetRequestParameterSet('sub')) {
-       $sub = getRequestParameter('sub');
+if (isGetRequestElementSet('sub')) {
+       $sub = getRequestElement('sub');
 } // END - if
 
 switch ($sub) {
        case 'settings': // Settings related to the index page
-               if (isFormSent()) {
+               if (isFormSent('save_config')) {
                        // Save settings
                        adminSaveSettingsFromPostData();
 
@@ -66,18 +66,18 @@ switch ($sub) {
                        $content['cookie_selection'] = createConfigurationTimeSelections('index_cookie', 'YMWD');
 
                        // Output form
-                       loadTemplate('admin_config_home', false, $content);
+                       loadTemplate('admin_config_home', FALSE, $content);
                }
                break;
 
        case 'target': // Set which what-file will be placed in home-page (only modules.php?module=index)
-               if (isGetRequestParameterSet('home')) {
+               if (isGetRequestElementSet('home')) {
                        // Set new home
-                       updateConfiguration('index_home', getRequestParameter('home'));
+                       updateConfiguration('index_home', getRequestElement('home'));
                } // END - if
 
                // Load all what menu points
-               $result = SQL_QUERY("SELECT
+               $result = sqlQuery("SELECT
        `id`,
        `what`,
        `title`
@@ -95,7 +95,7 @@ ORDER BY
                $OUT = '';
 
                // Process all entries
-               while ($content = SQL_FETCHARRAY($result)) {
+               while ($content = sqlFetchArray($result)) {
                        // Link for setting 'what' as new 'home'
                        $newHomeLink = '<a href="{%url=modules.php?module=admin&amp;what=config_home&amp;sub=target&amp;home=' . $content['what'] . '%}">{--_IS_NEW_HOME--}</a>';
 
@@ -110,14 +110,14 @@ ORDER BY
                        $content['link'] = $newHomeLink;
 
                        // Load row template
-                       $OUT .= loadTemplate('admin_list_home_row', true, $content);
+                       $OUT .= loadTemplate('admin_list_home_row', TRUE, $content);
                } // END - while
 
                // Free memory
-               SQL_FREERESULT($result);
+               sqlFreeResult($result);
 
                // Load template
-               loadTemplate('admin_list_home', false, $OUT);
+               loadTemplate('admin_list_home', FALSE, $OUT);
                break;
 
        default: // Output selection table