Example #1
0
 public function indexAction()
 {
     $category_id = Comm\Arg::post('category_id');
     $title = Comm\Arg::post('title');
     $content = Comm\Arg::post('content');
     Model\Article::create($category_id, $title, $content);
     Comm\Response::json(100000, 'ๅ‘่กจๆˆๅŠŸ', ['href' => Comm\View::path('manage/article/index')], false);
 }