I'm building my own base to use on multiple sites that I will be building. And I've made a package for that. But I want to extend the CI helpers in that package (not in the app) - helpers such as url_helper
, html_helper
etc.
I've put a config folder (although I don't really understant what it does) in the package folder and a config file in it (so structure is packages/app_package/config/config.php
).
I've put the $config['subclass_prefix'] = 'app_';
(different from the application one preferably) and still not loading the helpers app_url_helper
etc
Did anybody do that?