コード例 #1
0
ファイル: PilotRanking.php プロジェクト: Galihom/phpVMS
 public function editaward()
 {
     $this->set('title', 'Edit Award');
     $this->set('action', 'editaward');
     $this->set('award', AwardsData::GetAwardDetail($this->get->awardid));
     $this->render('awards_awardform.tpl');
 }
コード例 #2
0
ファイル: PilotRanking.php プロジェクト: phpmods/phpvms_5.5.x
 public function editaward()
 {
     $this->checkPermission(EDIT_AWARDS);
     $this->set('title', 'Edit Award');
     $this->set('action', 'editaward');
     $this->set('award', AwardsData::GetAwardDetail($this->get->awardid));
     $this->render('awards_awardform.php');
 }