Beispiel #1
0
 public function indexAction(mfRequest $request)
 {
     $this->title = "What a test£¡";
     if ($request->getMethod() == mfRequest::GET) {
         $this->method = 'sure GET';
     }
 }
Beispiel #2
0
 public function newAction(mfRequest $request)
 {
     $this->catagories = Catagory::getAll();
     if ($request->getMethod() == mfRequest::POST) {
         $post = new Post();
         $post->title = $request->getParameter('title');
         $post->content = $request->getParameter('content');
         $post->catagory_id = $request->getParameter('catagory_id');
         if ($post->isValid()) {
             $post->save();
             $this->setFlash('notice', '成功发布博文:)');
             $this->redirect('blog/index');
         }
     }
 }