コード例 #1
0
ファイル: actions.class.php プロジェクト: yasirgit/afids
 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
ファイル: actions.class.php プロジェクト: yasirgit/afids
 public function executeAutoCompleteRequester()
 {
     $this->keyword = $this->getRequestParameter('req_name');
     $this->persons = PersonPeer::getFirstNames($this->keyword, 'itiReq');
     $this->setLayout(false);
 }
コード例 #3
0
ファイル: actions.class.php プロジェクト: yasirgit/afids
 public function executeAutoCompleteFirst()
 {
     $this->keyword = $this->getRequestParameter('firstname');
     $this->persons = PersonPeer::getFirstNames($this->keyword, "companion");
 }
コード例 #4
0
ファイル: actions.class.php プロジェクト: yasirgit/afids
 public function executeAutoCompleteFirst()
 {
     $this->keyword = $this->getRequestParameter('firstname');
     //$type = $this->getRequestParameter('type');
     $type = "contact";
     $this->persons = PersonPeer::getFirstNames($this->keyword, $type);
 }
コード例 #5
0
ファイル: actions.class.php プロジェクト: yasirgit/afids
 public function executeAutoCompleteFirstPi()
 {
     $this->keyword = $this->getRequestParameter('pilot_fname');
     $this->persons = PersonPeer::getFirstNames($this->keyword, 'missionLegPi');
 }