Howdy folks.
I have a modular app and I'm wanting to create a library for the "manager" module. I only want this library available to the manager module and I'm curious about how I go about making it available. My structure is as follows -> http://pastie.org/990784 The library would be in application/modules/manager/library and has the following content thus far <?php class Manager_Common { public function __construct() { } } I'm attempting to call via: $this->commonLIB = new Manager_Common();
