Пример #1
0
 public function post_delete()
 {
     if (Input::has('gallery_id')) {
         $gid = Input::get('gallery_id');
         $gallery = CmsGallery::find($gid);
         //CHECK IF GALLERY EXISTS
         if (!empty($gallery)) {
             //DELETE FROM DB
             $gallery->files()->delete();
             $gallery->delete();
             Notification::success(LL('cms::alert.delete_gallery_success', CMSLANG, array('gallery' => $gallery->name)), 1500);
             return Redirect::to_action('cms::gallery');
         } else {
             Notification::error(LL('cms::alert.delete_gallery_error', CMSLANG), 2500);
             return Redirect::to_action('cms::gallery');
         }
     } else {
         Notification::error(LL('cms::alert.delete_gallery_error', CMSLANG), 1500);
         return Redirect::to_action('cms::gallery');
     }
 }
 public function post_save_gallery()
 {
     $auth = Auth::check();
     if ($auth) {
         $input = Input::get();
         //GRAB DATA
         $gallery = new CmsGallery();
         if (!empty($input['gallery_id'])) {
             $gallery = CmsGallery::find($input['gallery_id']);
         }
         //VALIDATION CHECK
         $rules = array('gallery_name' => 'required|alpha_dash|between:2,30|unique:galleries,name,' . $input['gallery_id']);
         $messages = array('required' => LL('cms::validation.required', CMSLANG)->get(), 'between' => LL('cms::validation.between.string', CMSLANG)->get(), 'unique' => LL('cms::validation.unique', CMSLANG)->get(), 'alpha_dash' => LL('cms::validation.alpha_dash', CMSLANG)->get());
         $validation = Validator::make($input, $rules, $messages);
         if ($validation->fails()) {
             return json_encode($validation->errors);
         }
         $gallery->name = strtolower($input['gallery_name']);
         $gallery->thumb = $input['gallery_thumb'];
         $gallery->save();
         //DELETE CACHE
         if (CACHE) {
             Cache::forget('img_gallery_' . strtolower($input['gallery_name']));
         }
         $gid = $gallery->id;
         // Empty template
         $template = '';
         if (Input::get('file_id') !== '') {
             $files = Input::get('file_id');
             if (is_array($files)) {
                 foreach ($files as $fid) {
                     $check = DB::table('files_galleries')->where_cmsfile_id($fid)->where_cmsgallery_id($gid)->first();
                     if (empty($check)) {
                         $gallery->files()->attach($fid, array('order_id' => 1000000));
                     }
                     $img = CmsFile::find($fid);
                     // Template returned
                     $template .= '<li id="' . $gid . '_' . $fid . '" class="span1">';
                     $template .= '<a class="thumbnail fancy" rel="tooltip" data-original-title="' . $img->name . '" href="' . BASE . $img->path . '">';
                     $template .= '<img src="' . BASE . $img->thumb . '" />';
                     $template .= '</a>';
                     $template .= '</li>';
                 }
                 //DELETE NOT IN
                 DB::table('files_galleries')->where_cmsgallery_id($gid)->where_not_in('cmsfile_id', $files)->delete();
             }
             $response = 'success';
             $msg = LL('cms::ajax_resp.gallery_save_success', CMSLANG)->get();
             $backurl = $input['back_url'];
             // Inject container
             $inject = 'ul.sortable';
             $detach = true;
         } else {
             //DELETE ALL GALLERY_ID
             DB::table('files_galleries')->where_cmsgallery_id($gid)->delete();
             $response = 'success';
             $msg = LL('cms::ajax_resp.gallery_save_success', CMSLANG)->get();
             $backurl = $input['back_url'];
             $template = '';
             $inject = '';
             $detach = true;
         }
     } else {
         $response = 'error';
         $msg = LL('cms::ajax_resp.gallery_save_error', CMSLANG)->get();
         $backurl = '#';
         $template = '';
         $inject = '';
         $detach = true;
     }
     $data = array('auth' => $auth, 'cls' => 'gallery_id', 'id' => $gid, 'response' => $response, 'message' => $msg, 'backurl' => $backurl, 'detach' => $detach, 'inject' => $inject, 'template' => $template);
     return json_encode($data);
 }
 public function post_add_gallery()
 {
     $auth = Auth::check();
     if ($auth and is_numeric(AUTHORID)) {
         if (Input::get('gallery_id') !== '') {
             $fid = Input::get('file_id');
             $galleries = Input::get('gallery_id');
             if (is_array($galleries)) {
                 foreach ($galleries as $key => $gid) {
                     $check = DB::table('files_galleries')->where_cmsfile_id($fid)->where_cmsgallery_id($gid)->count();
                     if ($check == 0) {
                         $gallery = CmsGallery::find($gid);
                         $add_array = array('order_id' => Config::get('cms::settings.order'));
                         $gallery->files()->attach($fid, $add_array);
                     }
                 }
                 //DELETE NOT IN
                 DB::table('files_galleries')->where_cmsfile_id($fid)->where_not_in('cmsgallery_id', $galleries)->delete();
                 $response = 'success';
                 $msg = LL('cms::ajax_resp.gallery_save_success', CMSLANG)->get();
                 $backurl = Input::get('back_url');
             } else {
                 //DELETE ALL
                 DB::table('files_galleries')->where_cmsfile_id($fid)->delete();
                 $response = 'success';
                 $msg = LL('cms::ajax_resp.gallery_save_success', CMSLANG)->get();
                 $backurl = '#';
             }
         } else {
             $response = 'error';
             $msg = LL('cms::ajax_resp.gallery_save_error', CMSLANG)->get();
             $backurl = '#';
         }
     } else {
         $response = 'error';
         $msg = LL('cms::ajax_resp.gallery_save_error', CMSLANG)->get();
         $backurl = '#';
     }
     $data = array('auth' => $auth, 'cls' => 'file_id', 'id' => $fid, 'response' => $response, 'message' => $msg, 'backurl' => $backurl);
     return json_encode($data);
 }