CodeIgniter Forums
Generic Application Structure Help - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Generic Application Structure Help (/showthread.php?tid=8771)



Generic Application Structure Help - El Forum - 05-30-2008

[eluser]Unknown[/eluser]
I've used CodeIgniter for a little application and it worked perfectly.

Now I want to use it for a more complex one and need some help to start.

It is a Warehouse Management System, that has a solid code base, but that can be personalized from customer to customer.

My objectives are:
- Use the same CodeIgniter version for all customers
- Create a base set of Controllers/Views/Models for my application
- Manage a set or more of personalized Controllers/Views/Models based on customers requests that extends the base ones functionality
- Share resources (images, js, css) through applications

Is this possibile?
Does CodeIgniter has such flexibility?
Am I able to extend a Controller/View/Model made in another application folder?

Thank you very much for this great software...and for the reply (hopeSmile

Straps


Generic Application Structure Help - El Forum - 05-30-2008

[eluser]sikkle[/eluser]
humm, if we keep thinking out loud about your structure.

Indeed you can have more than one application in the same structure.

But, one application is easier to maintain, better to have "configuration" per user, but using the same application no ?

good luck!


Generic Application Structure Help - El Forum - 05-31-2008

[eluser]Unknown[/eluser]
Ok, I will try with a single application structure...

I will report my progresses soon

Thanks