Hi everyone,
is anyone using Grocery/Image Crud within a custom module in Fuel?
I'm trying to implement a custom module with image Crud but I have no luck... Are the 2 things compatible each other? They should be since Fuel is based on CI and Grocery Crud!
Thanks in advance
Comments
Also, I'm having some difficulties with the frontend part: once I've set everything up in my backend, how do I pull the data out of the database and show it in my pages? Do I have to create models for that or I have some methods and objects that I can use?
http://docs.getfuelcms.com/modules/advanced
The following will create a folder under fuel/modules/crud:
php index.php fuel/generate/advanced crud
If you wind up needing to create a table that needs to be directly managed by FUEL (a simple module), you can create a simple module by running the following which will create a table called crud_gallery and a corresponding crud_gallery_model in the fuel/modules/crud/models/ folder:
php index.php fuel/generate/simple crud_gallery crud
You can check out some other advanced modules found under our GitHub page as exemples:
https://github.com/daylightstudio?tab=repositories
When I render the page where the CRUD is using $this->fuel->admin->render() I have jquery-ui conflicts. Otherwise if I just try with $this->load->view() it works...
I think it's going to be hard to integrate Grocery Crud and FUEL together...