public function imageAction()
 {
     $this->getResponse()->setHeader('Content-Type', 'image/png');
     $this->_helper->layout->disableLayout();
     $this->_helper->viewRenderer->setNoRender(true);
     $id = $this->_getParam('id');
     $img = Application_Model_M_Travel::getImage($id);
     echo $img;
 }
 public function travelAction()
 {
     $id = $this->_getParam('id');
     //destination_id
     $travelMaps = Application_Model_M_DestinationTravelMap::fetchByDestinationID($id);
     if (count($travelMaps) > 0) {
         $travels = array();
         foreach ($travelMaps as $travelMap) {
             $travelID = $travelMap->getTravel_id();
             $travel = Application_Model_M_Travel::find($travelID);
             if ($travel && $travel->getStatus() == 1) {
                 $result = array('id' => $travel->getId(), 'title' => $travel->getTitle(), 'subtitle' => $travel->getSubtitle(), 'img' => Application_Model_M_Travel::getImageUrl($travel->getId()), 'adult_oprice' => $travel->getAdult_oprice(), 'adult_dprice' => $travel->getAdult_dprice(), 'child_oprice' => $travel->getChild_oprice(), 'child_dprice' => $travel->getChild_dprice(), 'area' => $travel->getArea(), 'sales' => $travel->getSales());
                 array_push($travels, $result);
             }
         }
         if (count($travels) > 0) {
             $out['errno'] = '0';
             $out['travels'] = $travels;
         } else {
             $out['errno'] = '1';
         }
     } else {
         $out['errno'] = '1';
     }
     $out['msg'] = Yy_ErrMsg_Destination::getMsg('travel', $out['errno']);
     Yy_Utils::jsonOut($out);
 }
Example #3
0
 public static function getTravelTypeByTravelID($id)
 {
     $travel = Application_Model_M_Travel::find($id);
     $type = $travel->getType();
     return $type;
 }
 public function traveldetailAction()
 {
     $did = $this->_getParam('id');
     $maps = Application_Model_M_DepartmentsTravelMap::fetchByDepartID($did);
     $travels = array();
     if (count($maps) > 0) {
         foreach ($maps as $map) {
             $tid = $map->getTravel_id();
             $travel = Application_Model_M_Travel::find($tid);
             if ($travel) {
                 array_push($travels, $travel);
             }
         }
     }
     $this->view->travels = $travels;
     $this->view->did = $did;
 }
Example #5
0
 public function delete()
 {
     $where = 'id=' . $this->getId();
     return Application_Model_M_Travel::delete($where);
 }