コード例 #1
0
ファイル: Ajax.php プロジェクト: piotrazsko/accounting
 public function action_dell_store()
 {
     if (Request::initial()->is_ajax()) {
         $id = Arr::get($_POST, 'id', '');
         $ajax = new Model_Stanki();
         $res = $ajax->dell_store($id);
         echo $res;
     }
 }