It might be nice to see a write up on how you did it just so I can see if we can add anything in the main repo to make it easier for people trying to do the same thing.
If you are referring to the left side menu, it currently only allows you to group menu items and not nest any further.
If you referring to something similar to the "Tree' button when viewing pages, navigation, or blog posts, there is a tree method …
Try changing the 'sanitize_images' property of your module to FALSE in your MY_fuel_modules.php file. Sometimes the xss_clean function gives FALSE positives.
Also, for really big images you may need to adjust the server:
http://www.cyberciti.biz/fa…
I'm sorry but I'm not quite sure I follow the problem you are having. If it helps, you can always pass the 'view' variable to specify which view file you want to use:
$this->fuel_page->add_vars(array('view' => 'events'));
For a list of spe…
That's correct. The fuel/modules/fuel/config/fuel_routes.php file checks to see if you are in the admin (IN_FUEL_ADMIN) before creating the other routes (to prevent unnecessary overhead when browsing the normal site).
I think this it is possible to respect the page published status by adding the following where clause in fuel/modules/fuel/models/pagevariables_model.php in the _common_query method:
function _common_query() { $this->db->join($this->_table…
If it is the homepage, you can create a "home" _variables file and use the specific 'libraries', 'models' or 'helpers' variables. That's explained a little more at the bottom of this page:
http://www.getfuelcms.com/user_guide/general/opt-in-controll…
Let me try and answer your questions:
1. Yes (assuming that you have fuel_mode set to "auto" which you do). To ensure that the cms view is displayed instead of a view with perhaps the same location, you can at the "render_mode" parameter:
$page_ini…
You could use $CI->load->library('my_lib'); assuming $CI is set using get_instance() already:
$CI =& get_instance(); $CI->load->library('my_lib');
Alternatively, you could add it to the fuel/application/config/autoload.php config fil…
HMVC is indeed hinted at in this article and I'm definitely hoping it makes it soon:
http://codeigniter.com/news/codeigniter_2.1.0_belated_release_announcement
That may play into how we want to implement the use of loading module based files depend…
I'm assuming the FUEL way you are referring to the HMVC method that uses $this->load->library('module/my_library') correct?
If so, either should work and I guess it depends on your preference. Using module_load is a little more explicit to m…
The next version is not currently on GitHub and being developed using an internal GIT repo until it is more stable. We don't have a release date set yet but are actively working on it and are hoping to have a release in the next few months.
I agree. The next version actually addresses this issue using packages to limit the number of files needed in the application folder including Form_builder.
Did you try it with the CLI interface instead of the ci_cron.php:
php /var/www/httpdocs/index.php clients/cron
If you are on a MAC using MAMP, you may have trouble with pages needing a database connection. If so, this link may help:
http://codeignit…
Unfortunately, to do that requires the changing of a few paths including:
1. APPPATH in the index.php bootstrap
2. The application/config/constants.php
3. The fuel/modules/fuel/config/fuel_constants.php
And a few other areas I believe. Also, the ap…
Try changing the site variable name to something like 'annual_gift_certificate_price' without any spaces. Also, you should be able to just do a regular merge without fuel_var like so to just test the variables existence in the view:
<?=$annual_gi…
Thanks for the comments. We are looking at ways to improve the documentation and will consider all your suggestions.
With regards to the _remap controller method, that is native to CI and would recommend checking out this page:
http://codeigniter.c…
We are currently working on creating better separation for the inline editing to prevent some of those clashes by removing which removes the need for a bunch of the plugins for inline editing so let us know what you find so we can make adjustments i…
Unless I misunderstand, I believe it should work for you if you provide the proper nav key in the admin. So for example, if you create a menu item with the location value as empty but specify the "nav key" to say "blank" and then have all the child…
Routes only work with the URI information and disregard the domain info. So, for example:
$route['about/my_old_page'] = 'about/my_new_page';
For what you are wanting to do, I'd recommend using .htaccess:
http://dense13.com/blog/2008/02/27/redirectin…
Try explicitly setting the location value of the menu item to an empty string:
$nav['my_menu_item'] = array('label' => 'My Menu Item', 'location' => '');
I'd check your "{" and "}" in your HTML to see if there may be some that Dwoo is trying to parse. Additionally if you have some "{" or "}" you want escaped, you can wrap them in a {literal}....{/literal}