Пример #1
0
 public function renderDetail($no)
 {
     $item = $this->ics->Read($no);
     if ($item) {
         $this->template->item = $item;
     } else {
         $this->redirect('Homepage:default');
     }
 }
Пример #2
0
 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');
     }
 }