Esempio n. 1
0
 /**
  * Passenger's facility auto complete
  * CODE: passenger_create
  */
 public function executeAutoCompleteFacility()
 {
     if ($this->getRequestParameter('facility')) {
         $this->keyword = $this->getRequestParameter('facility');
         $this->passengers = PassengerPeer::getByFirstLetterFacility($this->keyword);
     }
 }