Пример #1
0
 public function executeAutoCompleteFirstNon()
 {
     $this->keyword = $this->getRequestParameter('firstname');
     //$type = $this->getRequestParameter('type');
     $type = "NoPassenger";
     $this->persons = PersonPeer::getFirstNames($this->keyword, $type);
     //$this->setTemplate('AutoCompleteFirst');
 }
Пример #2
0
 public function executeAutoCompleteRequester()
 {
     $this->keyword = $this->getRequestParameter('req_name');
     $this->persons = PersonPeer::getFirstNames($this->keyword, 'itiReq');
     $this->setLayout(false);
 }
Пример #3
0
 public function executeAutoCompleteFirst()
 {
     $this->keyword = $this->getRequestParameter('firstname');
     $this->persons = PersonPeer::getFirstNames($this->keyword, "companion");
 }
Пример #4
0
 public function executeAutoCompleteFirst()
 {
     $this->keyword = $this->getRequestParameter('firstname');
     //$type = $this->getRequestParameter('type');
     $type = "contact";
     $this->persons = PersonPeer::getFirstNames($this->keyword, $type);
 }
Пример #5
0
 public function executeAutoCompleteFirstPi()
 {
     $this->keyword = $this->getRequestParameter('pilot_fname');
     $this->persons = PersonPeer::getFirstNames($this->keyword, 'missionLegPi');
 }