]> git.mxchange.org Git - core.git/commitdiff
It is now 'main_content'.
authorRoland Haeder <roland@mxchange.org>
Thu, 14 May 2015 09:42:34 +0000 (11:42 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 14 May 2015 09:42:34 +0000 (11:42 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/commands/html/class_HtmlConfirmCommand.php
inc/classes/main/commands/html/class_HtmlHomeCommand.php
inc/classes/main/commands/html/class_HtmlLoginAreaCommand.php
inc/classes/main/commands/html/class_HtmlLoginCommand.php
inc/classes/main/commands/html/class_HtmlLoginFailedCommand.php
inc/classes/main/commands/html/class_HtmlLogoutDoneCommand.php
inc/classes/main/commands/html/class_HtmlRegisterCommand.php
inc/classes/main/commands/html/class_HtmlStatusCommand.php
inc/classes/main/mailer/debug/class_DebugMailer.php

index 7500fead978c58c4603095d92d35ca4a75033529..9cc72c4ffa3ae16de698ea146efbd059f2b3fe51 100644 (file)
@@ -90,7 +90,7 @@ class HtmlConfirmCommand extends BaseCommand implements Commandable {
                $templateInstance->loadCodeTemplate('confirm_link');
 
                // Assign the home template with the master template as a content ... ;)
-               $templateInstance->assignTemplateWithVariable('confirm_link', 'content');
+               $templateInstance->assignTemplateWithVariable('confirm_link', 'main_content');
 
                // Load the master template
                $templateInstance->loadCodeTemplate($masterTemplate);
index b422cb730519734e42e2f527934b1ae12e81626d..847f01631010cf375cbf61492f367b42e441cfff 100644 (file)
@@ -87,7 +87,7 @@ class HtmlHomeCommand extends BaseCommand implements Commandable {
                $templateInstance->loadCodeTemplate('home');
 
                // Assign the home template with the master template as a content ... ;)
-               $templateInstance->assignTemplateWithVariable('home', 'content');
+               $templateInstance->assignTemplateWithVariable('home', 'main_content');
 
                // Load the master template
                $templateInstance->loadCodeTemplate($masterTemplate);
index c75c59c2b370d764fe3a09ac9d2f49a9f0239cc4..555f246c91f34b21895bb9e97c13ad668885fab1 100644 (file)
@@ -124,7 +124,7 @@ class HtmlLoginAreaCommand extends BaseCommand implements Commandable {
 
                // Assign the main template with the master template as a content ... ;)
                $templateInstance->compileTemplate();
-               $templateInstance->assignTemplateWithVariable('login_main', 'content');
+               $templateInstance->assignTemplateWithVariable('login_main', 'main_content');
 
                // Load the master template
                $templateInstance->loadCodeTemplate($masterTemplate);
index f5221504b67f05590cc1e79f5a8ff2444830d2b4..e3235769ab1fa3abd519da827ee6c07ba90656a3 100644 (file)
@@ -93,7 +93,7 @@ class HtmlLoginCommand extends BaseCommand implements Commandable, Registerable
                $templateInstance->loadCodeTemplate('login_form');
 
                // Assign the home template with the master template as a content ... ;)
-               $templateInstance->assignTemplateWithVariable('login_form', 'content');
+               $templateInstance->assignTemplateWithVariable('login_form', 'main_content');
 
                // Load the master template
                $templateInstance->loadCodeTemplate($masterTemplate);
index af50192a9d8ec430167d38ac989edcebef3e9c2b..4a73bd2b683e249189835ad0c7f76e59cdba6eee 100644 (file)
@@ -87,7 +87,7 @@ class HtmlLoginFailedCommand extends BaseCommand implements Commandable {
                $templateInstance->loadCodeTemplate('login_failed');
 
                // Assign the login_failed template with the master template as a content ... ;)
-               $templateInstance->assignTemplateWithVariable('login_failed', 'content');
+               $templateInstance->assignTemplateWithVariable('login_failed', 'main_content');
 
                // Load the master template
                $templateInstance->loadCodeTemplate($masterTemplate);
index 9149de165124aaee369868d1d9f42c76ce23e1c9..b02ab925410e05618f5b3ec02684c13caff1ded7 100644 (file)
@@ -87,7 +87,7 @@ class HtmlLogoutDoneCommand extends BaseCommand implements Commandable {
                $templateInstance->loadCodeTemplate('logout_done');
 
                // Assign the logout_done template with the master template as a content ... ;)
-               $templateInstance->assignTemplateWithVariable('logout_done', 'content');
+               $templateInstance->assignTemplateWithVariable('logout_done', 'main_content');
 
                // Load the master template
                $templateInstance->loadCodeTemplate($masterTemplate);
index a293bed4afa9bcbd239ae537c002320eac0cc6d8..4f8105d20193a708a6552880b157d97ba4f8ac03 100644 (file)
@@ -94,7 +94,7 @@ class HtmlRegisterCommand extends BaseCommand implements Commandable, Registerab
 
                // Assign the register template with the master template as a content ... ;)
                $templateInstance->compileTemplate();
-               $templateInstance->assignTemplateWithVariable('register_form', 'content');
+               $templateInstance->assignTemplateWithVariable('register_form', 'main_content');
 
                // Load the master template
                $templateInstance->loadCodeTemplate($masterTemplate);
index eb28013849f2abd4374d3d4b0559a5f86896c12a..e27858ca6311787e6a72000d9e7d2c04bf75c2ab 100644 (file)
@@ -88,7 +88,7 @@ class HtmlStatusCommand extends BaseCommand implements Commandable {
                $templateInstance->loadCodeTemplate('status');
 
                // Assign the status template with the master template as a content ... ;)
-               $templateInstance->assignTemplateWithVariable('status', 'content');
+               $templateInstance->assignTemplateWithVariable('status', 'main_content');
 
                // Load the master template
                $templateInstance->loadCodeTemplate($masterTemplate);
index a3e1fa13bcf497a01fb91a1c6eebafe4101b297f..3a37c02aa60d7e8b17e27d5ac58f397b64285426 100644 (file)
@@ -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');