From 346785ef6cffb34a0623bec7f056e034bd9a9b55 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Fri, 11 Jul 2014 13:32:25 -0400 Subject: [PATCH] Move static content putting the static content under the listing part --- Toolkit/Template/Page/Toolbox.php | 2 +- static/10.phtml | 12 ++++++++++++ static/9.phtml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 static/10.phtml diff --git a/Toolkit/Template/Page/Toolbox.php b/Toolkit/Template/Page/Toolbox.php index 1e50f90..b6f282c 100644 --- a/Toolkit/Template/Page/Toolbox.php +++ b/Toolkit/Template/Page/Toolbox.php @@ -167,8 +167,8 @@ class Toolkit_Template_Page_Toolbox implements Toolkit_Template_Page_IBody return $breadCrumbs . $primaryParagraph . - $staticPageContent . $secondaryParagraphs . + $staticPageContent . $coupons . $photoGalleryContent; } diff --git a/static/10.phtml b/static/10.phtml new file mode 100644 index 0000000..705e836 --- /dev/null +++ b/static/10.phtml @@ -0,0 +1,12 @@ +configureForm(); + $cf->useCaptcha(true); + echo $cf->toHtml(); +} diff --git a/static/9.phtml b/static/9.phtml index e3e5c2a..b41e366 100644 --- a/static/9.phtml +++ b/static/9.phtml @@ -780,5 +780,5 @@ $wizard->addAction('display', new ActionDisplay()); $wizard->addAction('process', new ActionProcess()); echo $wizard->run(); -$form = '
'.print_r($_SESSION, true).'
'; +//$form = '
'.print_r($_SESSION, true).'
'; echo $form; -- 2.17.1