We don't use a submodule but just another remote repo that points to here:
https://github.com/daylightstudio/FUEL-CMS.git
We normally will check out a fresh copy from GitHub, then setup a remote repo for our own development on that project which we…
The long hand should actually have the permission keys like:
'permission' => array('markets', 'create' => 'markets/create', 'edit' => 'markets/edit', 'publish' => 'markets/publish', 'delete' => 'markets/delete'),
That appears to be a bug!
I've posted a fix in the development branch:
https://github.com/daylightstudio/FUEL-CMS/commit/4bba028e0c7e9e8650da90d798c718586a06a205
The site_url (or url_to function which site_url will alias to in the upcoming release), should automatically append the language parameter if the following parameter is added and set to TRUE in your fuel/application/config/MY_fuel.php file:
// Appen…
It sounds like you may want to add some additional Javascript to your page to trigger your Place Order action. There are a couple areas in the documentation that may help with this but basically, for a module, you can include your own JS files, or y…
The returned value for the AJAX method (e.g. "ajax_get_groups_by_division_id") should be HTML so that the AJAX callback can insert it into the DOM. Perhaps some updates to the documentation may be best to clear up that confusion.
Normally, it calls the base_module_model::ajax_options() method which returns HTML option elements. If your method returns option elements like that method, does it work.
OK... so the request is happening correctly but the replacement after the request seems to be the issue. What is the class ".division_depends" element?
You can't nest tabs in FUEL and I imagine with 400+ fields you'll run into other issues. The nested field type will nest another form_builder instance, however, their can only be one set of tabs. You can have additional groupings using the "section"…
Try using an array instead of a string if you want to include a javascript file. You can use a string value if you want to put the javascript inline e.g. 'js' => 'hello()'
You can add a where and order parameter to the foreign keys, however, it doesn't have a limit parameter:
public foreign_keys = array('my_foreign_key' => array('my_model', 'where' => 'type = "my_type"', 'order' => 'desc');
To add a limit, yo…
That error may be due to the "get_others" method on the model that returns a drop down of all the other records for easy navigation. Try adding this to your model:
public function get_others($display_field, $id = NULL, $val_field = NULL) { ret…
There is some documentation near the end of the Relationships section highlighted in red:
http://docs.getfuelcms.com/general/models#relationships
public $has_many = array('attributes' => array('model' => array(FUEL_FOLDER => 'fuel_tags_mode…
The default readonly value for a MY_Model should be FALSE. However, if you use the fuel_model() function it sets the readonly value to TRUE. You can get around this by not using the fuel_model function and loading the model like you would normally …
Hmmm... that does sound like a double whammy being on GoDaddy and Windows. Unfortunately (or fortunately), we rarely do Window's installs and aren't familiar with Percona either.