From: Steve Sutton Date: Tue, 4 Jun 2013 19:25:46 +0000 (+0000) Subject: adding trip planner X-Git-Tag: v1.0~150 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=5f487d92ad18f83caae2a526f8567355a8ad0679;p=web%2FMichiganTrailMaps.git adding trip planner --- diff --git a/config/application.ini b/config/application.ini index fccc7f2..3035774 100644 --- a/config/application.ini +++ b/config/application.ini @@ -87,11 +87,11 @@ memberdb.members.reports_page = Off ; The page id in the toolbox that is the members only leads page memberdb.members.leads_page = Off ; Turn the trip planner module On or Off for the member application -memberdb.session.list = Off +memberdb.session.list = On ; The page id in the toolbox that holds the output for the trip planner -memberdb.session.page = Off +memberdb.session.page = 6 ; The page id in the toolbox that holds the create account form for the trip planner -memberdb.session.form = Off +memberdb.session.form = 16 ; Turn on the streamsend module to use with our member application memberdb.streamsend.application = Off diff --git a/static/16.phtml b/static/16.phtml new file mode 100644 index 0000000..d531f32 --- /dev/null +++ b/static/16.phtml @@ -0,0 +1,12 @@ +configureForm(); +$pp->useCaptcha(true); +$pp->setGateway($this->pageGateway); +echo $pp->toHTML(); diff --git a/static/6.phtml b/static/6.phtml new file mode 100644 index 0000000..60907df --- /dev/null +++ b/static/6.phtml @@ -0,0 +1,13 @@ + + #category, .listing { display:none; } +'; +} + +$sController = new Toolkit_Members_TripPlannerList( + $this->pageGateway, + Toolkit_Database::getInstance() +); +$sController->show();