コード例 #1
0
ファイル: post.php プロジェクト: nihonLoomba/noteshare-
 public function action_good($Pid)
 {
     if (Input::post()) {
         $good = Model_Good::forge();
         $good->Pid = $Pid;
         $good->username = Auth::get_screen_name();
         $good->save();
         $view = View::forge('post/success');
         return $view;
     }
 }
コード例 #2
0
ファイル: good.php プロジェクト: leprafujii/api
 /**
  * 指定画像の「いいね!」を削除します
  */
 public function post_del()
 {
     $this->response(Model_Good::del());
 }