コード例 #1
0
ファイル: AccountPresenter.php プロジェクト: bagr001/NAV_Shop
 public function actionRating($no)
 {
     $item = $this->ics->Read($no);
     if ($item && $this->ics->isRatingOpen($this->user->id, $no)) {
         $this->item_no = $no;
         $this->template->item = $item;
     } else {
         $this->redirect('Account:ratings');
     }
 }