]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_email.php
New wrapper functions introduced, TODOs.txt updated
[mailer.git] / inc / modules / admin / what-config_email.php
index 3242fcc33517ac3f13ee901a4d7ea40c0ebf7c98..ce0007636b34422a5d7312f477f5c9aa895a66c4 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, 2010 by Mailer Developer Team                    *
+ * 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__);
 
 // Remove empty array index
 if (!isPostRequestParameterSet('max')) unsetPostRequestParameter('add_max');
@@ -59,14 +57,14 @@ if (isPostRequestParameterSet('add_max')) {
                $content = '{--ADMIN_MAX_VALUE_SAVED--}';
        } else {
                // Value does alread exists!
-               $content = '<span class="admin_failed">{--ADMIN_MAX_VALUE_ALREADY--}</span>';
+               $content = '<span class="notice">{--ADMIN_MAX_VALUE_ALREADY--}</span>';
        }
 
        // Free memory
        SQL_FREERESULT($result);
 
        // Display message
-       loadTemplate('admin_settings_saved', false, $content);
+       displayMessage($content);
 } elseif ((isFormSent()) && (isGetRequestParameterSet('do'))) {
        // Change or delete entries...
        $TEXT = '';
@@ -83,22 +81,22 @@ if (isPostRequestParameterSet('add_max')) {
                                        postRequestParameter('comm', $id),
                                        $id
                                ),__FILE__, __LINE__);
-                               $TEXT = '{--MRECEIVE_SAVED--}';
+                               $TEXT = '{--ADMIN_MAX_RECEIVE_SAVED--}';
                                break;
 
-                       case 'del':
+                       case 'delete':
                                SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1",
                                        array($id), __FILE__, __LINE__);
-                               $TEXT = '{--MRECEIVE_DELETED--}';
+                               $TEXT = '{--ADMIN_MAX_RECEIVE_DELETED--}';
                                break;
                }
        }
 
        if (isset($TEXT)) {
                // Display message
-               loadTemplate('admin_settings_saved', false, $TEXT);
+               displayMessage($TEXT);
        } // END - if
-} elseif ((isFormSent('del')) && (ifPostContainsSelections())) {
+} elseif ((isFormSent('delete')) && (ifPostContainsSelections())) {
        // Delete entries
        $OUT = '';
        foreach (postRequestParameter('sel') as $id => $value) {