Exemplo n.º 1
0
 public function ajaxFindReturnDest()
 {
     AImporter::model('transports');
     $transport = new BookProModelTransports();
     $input = JFactory::getApplication()->input;
     $from = $input->getInt('from');
     $type = $input->getInt('type');
     $country_id = $input->getInt('country');
     echo json_encode($transport->getReturnAirport($from, $type, $country_id));
     die;
 }