]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-send_bonus.php
Added update_year.sh (still not fully flexible) and updated all years with it.
[mailer.git] / inc / modules / admin / what-send_bonus.php
index 765f304021b046571d392a135ce4db24d29752a0..710ac3def0af6e5c97ead2a6de05d72b165124b6 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -48,27 +48,36 @@ if (!isExtensionActive('order')) {
        return;
 } // END - if
 
-// 'mode' is not set by default
-if (!isGetRequestElementSet('mode')) {
-       // Set empty mode to "select"
-       setGetRequestElement('mode', 'select');
+// mail_mode is not set by default
+if (!isGetRequestElementSet('mail_mode')) {
+       // Is HTML extension enabled?
+       if (isExtensionInstalled('html_mail')) {
+               // Set empty mode to 'select'
+               setGetRequestElement('mail_mode', 'select');
+       } else {
+               // Set empty mode to 'normal'
+               setGetRequestElement('mail_mode', 'normal');
+       }
 } // END - if
 
 if (isFormSent()) {
        // Deliver bonus mail
-       addNewBonusMail(postRequestArray(), getRequestElement('mode'));
+       addNewBonusMail(postRequestArray(), getRequestElement('mail_mode'));
 } else {
        // Store send mode
-       $content['mode'] = getRequestElement('mode');
+       $content['mail_mode'] = getRequestElement('mail_mode');
 
        $content['html_select'] = '';
        if (isExtensionActive('html_mail')) {
                // If HTML extension is active
-               $content['html_select'] = loadTemplate('admin_send_bonus_html', true);
+               $content['html_select'] = loadTemplate('admin_send_bonus_html', TRUE);
        } // END - if
 
+       // Default template name is an invalid one
+       $template = 'admin_send_bonus_invalid';
+
        // Select template
-       switch(getRequestElement('mode')) {
+       switch(getRequestElement('mail_mode')) {
                case 'html':   // HTML mails
                case 'normal': // Normal mails
                        $template = 'admin_send_bonus_form';
@@ -80,7 +89,7 @@ if (isFormSent()) {
        } // END - switch
 
        // Load template
-       loadTemplate($template, false, $content);
+       loadTemplate($template, FALSE, $content);
 }
 
 // [EOF]