fooRequestElementBar() functions renamed, adding of request parameters added:
[mailer.git] / inc / modules / admin / what-send_bonus.php
index 45a8659627a1f621a7c9d2b4c43fdfc84d7cb0d4..6cc0db906eada15d923d2cc1f4349b4bfe04baae 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/28/2003 *
- * ===============                              Last change: 08/05/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 09/28/2003 *
+ * ===================                          Last change: 08/05/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-send_bonus.php                              *
@@ -17,7 +17,7 @@
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * 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);
-} elseif (!EXT_IS_ACTIVE('order')) {
-       addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), 'order'));
-       return;
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR('admin', __FILE__);
+addMenuDescription('admin', __FILE__);
+
+if (!isExtensionActive('order')) {
+       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('order'));
+       return;
+} // END - if
 
 // Set empty mode to "select"
-if (!REQUEST_ISSET_GET('mode')) REQUEST_SET_GET('mode', "select");
+if (!isGetRequestParameterSet('mode')) setGetRequestParameter('mode', "select");
 
-if (IS_FORM_SENT()) {
+if (isFormSent()) {
        // Deliver bonus mail
-       ADD_NEW_BONUS_MAIL(REQUEST_POST_ARRAY(), REQUEST_GET('mode'));
+       addNewBonusMail(postRequestArray(), getRequestParameter('mode'));
 } else {
        // Get all available users
-       define('__ALL_VALUE', TRANSLATE_COMMA(GET_TOTAL_RECEIVERS(REQUEST_GET('mode'))));
+       $content['all'] = translateComma(getTotalReceivers(getRequestParameter('mode')));
 
        // Prepare option lines
-       define('__OPTION_LINES', ADD_CATEGORY_OPTIONS(REQUEST_GET('mode')));
+       $content['options_lines'] = generateCategoryOptionsList(getRequestParameter('mode'));
 
        // Store send mode
-       define('__MODE', REQUEST_GET(('mode')));
+       $content['mode'] = getRequestParameter('mode');
 
-       if (EXT_IS_ACTIVE('html_mail')) {
+       $content['html_select'] = '';
+       if (isExtensionActive('html_mail')) {
                // If HTML extension is active
-               define('__HTML_SELECT',  LOAD_TEMPLATE("admin_send_bonus_html", true));
-       } else {
-               // And if not
-               define('__HTML_SELECT', '');
-       }
+               $content['html_select'] = loadTemplate('admin_send_bonus_html', true);
+       } // END - if
 
        // Select template
-       switch(REQUEST_GET('mode')) {
+       switch(getRequestParameter('mode')) {
                case 'html':   // HTML mails
                case 'normal': // Normal mails
-                       $template = "admin_send_bonus_form";
+                       $template = 'admin_send_bonus_form';
                        break;
 
-               case "select": // Selection
-                       $template = "admin_send_bonus_select";
+               case 'select': // Selection
+                       $template = 'admin_send_bonus_select';
                        break;
-       }
+       } // END - if
 
        // Load template
-       LOAD_TEMPLATE($template);
+       loadTemplate($template, false, $content);
 }
 
-//
+// [EOF]
 ?>