CodeIgniter Forums
load section folder like config folder - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: load section folder like config folder (/showthread.php?tid=86272)



load section folder like config folder - devo - 01-25-2023

hii how can i load section folder like config folder
the folder and file is like this images in link
https://ibb.co/rFDMctR
so i want like call the some helper ex : section('some')->section like in build in config helper from codeigniter config('App')->indexPage


RE: load section folder like config folder - kenjis - 01-25-2023

The namespace should be App\Sections.

PHP Code:
use CodeIgniter\Config\Factories;

$sections Factories::sections('some_sections')->sections



RE: load section folder like config folder - devo - 01-25-2023

(01-25-2023, 05:51 PM)kenjis Wrote: The namespace should be App\Sections.

PHP Code:
use CodeIgniter\Config\Factories;

$sections Factories::sections('some_sections')->sections

thanks you it's work