예제 #1
0
 public function actionBlog()
 {
     $blogs = BlogModel::model()->order("id DESC")->findAll();
     $this->view("blog", array("posts" => $blogs), false);
 }
예제 #2
0
 public function actionBlogDelete($id)
 {
     BlogModel::model()->where("`id`='" . (int) $id . "'")->delete();
     $this->redirect("/admin/blog");
 }