Пример #1
0
 function getcitytourpackageidAction()
 {
     //action step 1
     $package_id = $this->getRequest()->getParam("package_id");
     if ($package_id) {
         $dbbooking = new Application_Model_DbTable_Dbbookingcitytour();
         $dbbooking->createSessionBookingCityTour($package_id, 1);
         $this->_redirect("index/citytourbooking");
     } else {
         $this->_redirect("index/citytour");
     }
 }