I've created an advanced module to manage photo galleries called "gallerymanager". In the module's config folder I have a "gallerymanager.php" file with nav configuration and other settings.
$config['gallerymanager']['path'] = '/assets/gallerymanager';
$config['gallerymanager']['nav_path'] = 'media/gallerymanager';
How do I access these values in the controller?
I tried: die("Path:".$this->config('path'));
fail....
Comments
$path = $this->fuel->gallerymanager->config('path');