Inline editing for block fields will display all the fields associated with the layout when editing inline (not just one field at a time). If you say have a page layout variable that is of type "block" named "section", you can use either of the foll…
1) Perhaps there's an event that we can add at the end of the tableCallback method that triggers an event that you can subscribe to:
tableCallback : function(_this){ // ... removed for brevity if (_this.rearrangeOn){ _this.rearrangeItems(); } …
Have you confirmed that the javascript file is even loaded and the items method is called?
For the row clicking issue, you can set "rows_selectable" => FALSE in your module config file. Otherwise, it will automatically use the first action on t…
In the current version of FUEL, if no segment or query string value is set it will check the cookie value. If you add something like the following in your fuel/application/views/_variables/global.php, it will deactivate the cookie:
$CI->fuel->…
Is this for the form when creating/editing a page? If so, you can create a field type of "custom" to use:
http://docs.getfuelcms.com/general/forms#custom
Or you can create a more reusable field type using a "custom field type":
http://docs.getfuelc…
In this case, it sounds like you may want to overwrite the assets module with your own asset model that extends fuel_assets_model. There is an on_after_post hook you can use to do the saving to the asset table. The current fuel_assets_model on_after…
Not exactly. However, there are "block layouts" that offer a lot of flexibility in terms of how you build your page fields in the CMS. More can be read about here:
http://docs.getfuelcms.com/general/layouts#layouts_block_layouts
The way to switch the language is through the URL. The site_url() function has been augmented in FUEL to have a 3rd parameter which will attach a language value to the URL (2nd parameter is for https).
echo site_url('my_url', FALSE, 'de');
That is correct. Not much has been loaded at this point including the $CI object. You may have to do a normal include of the file and reference it via $config['site_lang']
When you say you can't, do you mean that it's just not working or are you getting an error message? Does the pre_process function even run do you know?
There are normally 2 things to check with .htaccess:
1. Try one of the following:
RewriteRule .* index.php?/$0 [L]
OR without the "?"
RewriteRule .* index.php/$0 [L]
2. If FUEL is in a subfolder on your webserver, change the RewriteBase to include…
The $CI object has not been created at that point in the process. The routes are used to determine which controller to use and the controller is essentially the $CI object ($this).
The language dropdown under the Pages module is for the front end only. If you specify multiple languages in your config, then a dropdown should appear when creating/editing a page. You can change this when creating/editing a page to associate varia…
Where are you calling "$this->fuel->config('site_lang');" and is $this referencing the $CI object. To test an alternative you can use CI()->fuel->config('site_lang'). The CI function is a wrapper around the get_instance() function.
To have one labeled site, you would need to create an advanced module named "site" and then put your own settings configuration in its config like so (in fuel/modules/site/config/site.php):
$config['site']['settings']=array(); $config['site']['setti…