04-07-2009, 10:04 AM
|
#3 (permalink)
|
|
The Contributor
Join Date: Feb 2008
Location: Pretoria, South Africa
Posts: 42
Thanks: 1
|
Weve looked into going into a framework driven structure, currently we have something mixed between an MVC structure and our own creativity :S
We have 1 core controller, 4 core classes and a library of sub classes, the core initiates the system and the core classes which contain security, database, error, presentation.
Our initiation process is as follows:
1. Error Handling
2. Database
3. Security
4. Presentation
So each core class would be dependent on all the core classes that would be initiated before it.
Our file structure is as follows:
./index.php
./javascript
./images
./css
./phplib
-- controller.php
-- error.php
-- database.php
-- security.php
-- presentation.php
./phplib/classes
-- class_xml.php
-- class_pdf.php
-- class_csv.php
-- class_graphs.php
-- class_mod.php
./module1
./module2
It is a PHP5 OOP strict framework fully integrated with jQuery
__________________
virtueCart v1.0.5 developed by WebDevSA
|
|
|