It is now 'main_content'.
[core.git] / inc / classes / main / mailer / debug / class_DebugMailer.php
index 8f38350c1fedc89bab11d21ed0a5f7da82294a63..3a37c02aa60d7e8b17e27d5ac58f397b64285426 100644 (file)
@@ -3,11 +3,11 @@
  * A mailer class for debugging purposes only. This class will print the
  * prepared mail out and will not send it to the recipient.
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.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
@@ -36,12 +36,12 @@ class DebugMailer extends BaseMailer implements DeliverableMail {
        /**
         * Creates an instance of this mailer class
         *
-        * @param       $templateInstance       A template instance
-        * @param       $appInstance            An application helper class
-        * @param       $templateName           Name of email template to set
-        * @return      $mailerInstance         An instance of this mailer class
+        * @param       $templateInstance               A template instance
+        * @param       $applicationInstance    An application helper class
+        * @param       $templateName                   Name of email template to set
+        * @return      $mailerInstance                 An instance of this mailer class
         */
-       public static final function createDebugMailer (CompileableTemplate $templateInstance, ManageableApplication $appInstance, $templateName) {
+       public static final function createDebugMailer (CompileableTemplate $templateInstance, ManageableApplication $applicationInstance, $templateName) {
                // Get a new instance
                $mailerInstance = new DebugMailer();
 
@@ -49,10 +49,10 @@ class DebugMailer extends BaseMailer implements DeliverableMail {
                $mailerInstance->setTemplateInstance($templateInstance);
 
                // Set application instance
-               $mailerInstance->setApplicationInstance($appInstance);
+               $mailerInstance->setApplicationInstance($applicationInstance);
 
                // Set template name
-               $mailerInstance->setTemplateName('resend_link');
+               $mailerInstance->setTemplateName($templateName);
 
                // Return the instance
                return $mailerInstance;
@@ -76,7 +76,7 @@ class DebugMailer extends BaseMailer implements DeliverableMail {
                                if (!$recipientInstance instanceof ManageableMember) {
                                        // Invalid entry found!
                                        throw new InvalidInterfaceException(array($this, 'ManageableMember'), self::EXCEPTION_REQUIRED_INTERFACE_MISSING);
-                               }
+                               } // END - if
 
                                // User class found, so entry is valid, first load the template
                                $this->loadTemplate($templateName);
@@ -112,7 +112,7 @@ class DebugMailer extends BaseMailer implements DeliverableMail {
                                $responseInstance = $this->getApplicationInstance()->getResponseInstance();
 
                                // Transfer the data to the response
-                               $this->getTemplateInstance()->transferToResponse($responseInstance);
+                               $templateInstance->transferToResponse($responseInstance);
                        } // END - foreach
                } // END - foreach
        }
@@ -147,7 +147,7 @@ class DebugMailer extends BaseMailer implements DeliverableMail {
                $templateInstance->compileTemplate();
 
                // Assign this template with variable
-               $templateInstance->assignTemplateWithVariable('mail_debug', 'content');
+               $templateInstance->assignTemplateWithVariable('mail_debug', 'main_content');
 
                // Load header template
                $templateInstance->loadCodeTemplate('header');