The view_location value in the controller is intended for backend module controllers. This controller appears to be something you want to render on the front end. The "Opt-in" controller method is only really intended for those files in the applicat…
1) If you are using Form Builder outside of the admin, you can use the "render_divs" method which will take it out of the table format and use divs which may make it a little more pliable for multiple columns (inside the admin uses tables).
2) The…
Because only the array of information is being passed, you'll have to retrieve the object first then delete it:
$record = $this->my_model->find_by_key($values['id'];
The MY_Model delete method will accept either an array for the where conditi…
Form_builder doesn't support field sets but does have a field type of "section" you can use to create different areas of the form. Providing either a label, value, or name value will result in an H3 tag being rendered (the H3 can be configured to by…
Try removing the index from the link. If you want to keep it, make sure there is a route in place to handle it in your fuel/modules/{module_name}/config/{module_name}_routes.php file
Add the module folder name to your modules_allowed parameter in the fuel/application/config/MY_fuel.php and see if that fixes your issue. If you already have that, be sure to include a $nav array variable with your menu items in your modules config …
The above example looks correct. What looks like is happening is that you are somehow passing the second parameter to img_path() which says which module to look in for creating the path to the image (e.g. echo img_path('galleryImges/image.jpg', 'my_…
A moderated sticky post for modules is a good idea until we get something better running.
I think a community driven sharing platform is a great idea, and would happily help where is needed. Truthfully, it would probably be a while before we at Day…
Pierlo, wow!... Are you willing to share that? I'd be happy to replace the one in the module pack with that because all it does is take you to Google analytics without logging in (it's pretty lame). Send me a note if you are.
There is a share categ…
Pierlo, if/when you start on that Tutorial, feel free to ask any questions and let us know so we can promote it for you. I think tutorials from forum members would be very insightful and may have a more valuable perspective. We are going to try and …
The on_before_delete() hook doesn't check for anything returned... it just runs (see line 1194 of MY_Model).
With regards to the saving issue, I wasn't able to replicate that problem locally. Are you using another model hook to process the file? Th…
Ahh yes... that is because page variables set in the admin override any other variables and the layout variable is one of them.
Perhaps in your main layout use the is_ajax() function to change how the layout renders. Or you can create a new layout …
The ambiguous error is because one of the other tables has an active column as well and the ORDER BY doesn't know which one to use unless you prefix it with the table name. Perhaps in your list_items method you put in code to say if ($col == 'active…
Sure. You can pass variables to the page using the opt-in controller but you must specify the view to associate with the page since the URI will contain additional segments of variable information and will not have a view file to match (e.g. about/m…
I'll chime in with why we developed FUEL, however, this is a good question that I'd like to hear others answer. Below are the 3 main reasons we developed it:
1. We like working with Codeigniter. Using a framework as our platform rather then a CMS g…