I'm not exactly sure what the issue may be at the moment but one guess may be how CIs Upload Class handles the $_FILES upload array for multiple files. More can be found here:
http://stackoverflow.com/questions/1908247/codeigniter-multiple-file-uplo…
You can do:
$this->config->set_item('language', 'slovenian'); $this->load->language('articles', 'slovenian');
When you say 'i change in admin to "slovenian" still choose english' where are you referring?
The blog controller allows you to filter on a category like so:
blog/categories/{category}
Or a date:
blog/2012/04/01
blog/2012/04/
blog/2012/
However, it does not out of the box allow you to filter on a date within a particular category. To add t…
The forum seems to be the best bet at the moment for getting questions answered. The IRC channel hasn't really seen any activity that I know of in a while.
Here is some documentation about advanced modules:
http://www.getfuelcms.com/user_guide/modules/advanced
Here are some examples:
http://www.getfuelcms.com/forums/discussion/224/fuel-cms-modules-pack/
You could use the $module_overwrites configuration parameter in the fuel/application/config/MY_fuel_modules.php to point the users module to use your own custom users_model like so:
$module_overwrites['users'] = array('model_name' => 'my_user_mod…
There are a couple ways to do it. The first is you can edit the "default_required_message" property on the model like so:
public $default_required_message = "Please fill out the required field '%1s'"
The second way is to use a key/value in the requi…
The add_edit method is what get's executed when you are editing a module record. To add additional functionality with jQX, you will need to override the add_edit method and call it's parent method:
jqx.load('plugin', 'jquery.tagsinput.min'); fuel.c…
You can loop through the $data array and translate it to the format you need. There will be a little better support for changing the date format in the next release.
I believe you can simply copy over everything. The code to get it to work is in the MY_Parser class but shouldn't need to be changed.
The next major release will have the latest version of Dwoo BTW.
Thanks for the report. We will have that fixed in a future update. Until then, I can tell you where the fix will be. There are a couple spots in the fuel/modules/fuel/assets/js/jqx/controller/BaseFuelController.js file on line 220 and 222, and 225 i…
The first solution will just parse the view like you said. For your second solution, I believe the issue is because you are not returning it as a string. Try this:
parse_template_syntax($this->load->view('_blocks/header', $vars, TRUE),$data);
…
The asset model is quite a bit different then the other models because it doesn't use the database and instead uses the file system (it extends the CI_Model class instead of the normal Base_module_model). Because of this, the required property doesn…
You can pass a variable to your view file of 'parse_view' = TRUE like so:
$data['parse_view'] = TRUE; $this->load->module_library(FUEL_FOLDER, 'fuel_page', array('location' => 'test')); $this->fuel_page->add_variables($data); $this-&g…
1. The login functionality for FUEL is specific to the FUEL admin. If you need to create a user management system outside of that you can use something like tank_auth:
http://www.getfuelcms.com/forums/discussion/comment/2120/#Comment_2120
That said…
FUEL doesn't have anything built in for backing up a single table. However, you could use the backup feature in the CI database utilities class:
http://codeigniter.com/user_guide/database/utilities.html
You would need to create a controller to hand…
Hmm.. I just installed your module on a clean copy and saw 2 of the 3 icons appear in the left menu (bottom 2). To fix the the missing icon just required an addition to the CSS: .ico_massmail_compune { background-image: url(imgs/ico_wrench.png) }