Showing posts with label Grocery CRUD. Show all posts
Showing posts with label Grocery CRUD. Show all posts

Grocery CRUD Delete Files Upload

By Atmojo | At 12:53:00 | Label : , , , | 0 Comments

Grocery CodeIgniter CRUD is a plugin that is easy to use and fast, but there is a complete lack of features. One is to remove the files from your uploads folder. How do I delete a file that we upload? Let's learn ...

Use callback_before_delete:
...
$crud->callback_before_delete(array($this,'callback_before_delete_slide'));
...

function callback_before_delete_slide($primary_key)
{
$this->db->where('id_slide',$primary_key);
$query = $this->db->get('tbl_slide');
$row = $query->row();
unlink("./assets/uploads/files/picture/slide/$row->picture");
}

Done, I hope it can be useful for us...
Posting Lama ►

------------------------Boost Your Website----------------------

 

Recomended


Free Chat


Copyright © . Art Media Blog - All Rights Reserved TOP