That message comes from the fuel/modules/fuel/language/en/fuel_lang.js file. However, if you change it there, it will be changed for all modules. The only way to override that message without affecting other modules or hacking the fuel/modules/fuel/…
Hmm... I tested this locally and am not able to replicate the problem (was able to see the merged in value). What happens if you just use:
<?=$twitter?>
Just a heads up, that be sure to put in the proper FUEL authorization checks since it opens in a different window (I believe) essentially outside of FUEL. I know for the "https://github.com/simogeo/Filemanager" I mention above, there is a place to p…
This issue happens when the Validator object being used with the form_builder has it's property "register_to_globals" set to TRUE. When logged in, the inline editing part of FUEL looks for global errors and they get displayed at the top. If you set …
It sounds like you may need to pull the field information from your model. You can use the model's "field_info" method to get the fields enum options. I haven't tested this but you can try something like following in your MY_fuel_modules.php file pe…
Tough to say. But if one is working and the other isn't, I'd double check the source to make sure the id used in the Javascript matches what is in the HTML.
Is your controller inheriting from the fuel/modules/fuel/controller/module.php controller? If so, can you test the controller property of "module_name" by doing the following in your controller method?
print_r($this->model_name);
In your case, just use $curr_page instead of fuel_var('curr_page'). fuel_var should be used for output only because it will output additional code for the inline editing to work.
Are you wanting to load extjs into the Admin or the front end? If the Admin, there is a "fuel_javascript" config parameter you can use to append additional javascript files in the MY_fuel.php.
$config['fuel_javascript'][] = array('my_js.js');
If it …
The module uses the URI segment to grab the initialization parameters for a module (see line 16-31 or so of the fuel/modules/fuel/controller/module.php). I'd recommend creating a route to map to a uri like "fuel/my_module".
You can create your own controller to use instead of the default "module" controller like you said. The pages and navigation controller do this (in fuel/modules/fuel/controllers/). The views can be configured by the simple modules "views" parameter …
That sounds like something that CKeditor is doing. Does this happen when "no_editor" class is applied to the field (so neither CKeditor or markitup are used)?
Here are a couple links that may help. The first one being imknights advanced module that allows you to have roles. The second one implementing tank_auth:
https://github.com/imknight/FUEL-CMS-Modules
http://www.getfuelcms.com/forums/discussion/comme…
Something that is not spelled out in the documentation is that if you create a model used in the FUEL admin (iBase_module_model instead of MY_Model), it requires a single primary key. This is because the links in the admin use a single value to edit…
You should be able to do a "where" active record call before that to filter the list like so:
$CI->db->where(array('silos.name' => 'finance')); $config['total_rows'] = $CI->db->get('news')->num_rows();
It shows up also under the Modules area because that area has the default value of "AUTO" which will automatically pull in any modules from MY_fuel_modules. To get around that, you can assign just the modules you want to appear under the Modules sec…