Hi guys, i need your help. Do you have any ideas, how i can run my "advanced modules" in views file? I tried to use modules::run('my_module') like HMVC in CI, but id doesnt work
If you are creating an advanced module in FUEL, you should be able to access it anywhere using $CI->fuel->my_module->my_method() where $CI is the controller object (which is referenced as $this in a controller). This is assuming that your advanced module has a library file at fuel/my_module/libraries/Fuel_my_module.php
Comments
http://docs.getfuelcms.com/modules/advanced
http://docs.getfuelcms.com/general/fuel-object-structure (towards the bottom)