CodeIgniter Forums
Creating Sub-Folders in application/library - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Creating Sub-Folders in application/library (/showthread.php?tid=37728)



Creating Sub-Folders in application/library - El Forum - 01-18-2011

[eluser]Unknown[/eluser]
hello just want to ask if its possible to add a sub-folder inside application/library. I want to be able to arrange my libraries inside this folder.

Example:

application

|_ library
|_ package1
|_ class1.php
|_ class2.php
|_ package2
|_ class3.php

and how will i call this from the controller? is it via
$this->load->library('package1/class1');


Creating Sub-Folders in application/library - El Forum - 01-19-2011

[eluser]James Bolongan[/eluser]
Yup, that's correct. :-)