I know I can nest libraries in subfolders, but can I do the same for Helpers?
The end result would be to have something to the effect of:
application/helpers/foo/bar_helper.php
application/helpers/baz_helper.php
Then call the helpers with:
$this->load->helper('foo/bar');
$this->load->helper('baz');
Yes you can store and load as follows (tested)
Even in your
autoload.phpyou can load a helper as follows