Exemplo n.º 1
0
 public function handleDeleteArticle($id)
 {
     $this->article = $this->articles->getByID($id);
     $this->articles->delete($this->article);
     $this->redrawControl('articles');
 }
Exemplo n.º 2
0
 public function actionDetail($articleId)
 {
     $this->article = $this->articles->getByID($articleId);
     $this->checkRecord($this->article);
 }