Exemplo n.º 1
0
 public function ajaxFindDepartDest()
 {
     AImporter::model('transports');
     $cart = $this->getCart();
     $transport = new BookProModelTransports();
     $input = JFactory::getApplication()->input;
     $type = $input->getInt('type');
     $country_id = $input->getInt('country');
     $cart->filter['type'] = $type;
     $cart->filter['country'] = $country_id;
     $cart->saveToSession();
     echo json_encode($transport->getDepartAirport($type, $country_id));
     die;
 }