Hey all,
First of all I would like to thank "Everah" for getting me interested in re-building my Framework in PHP5.
I Have released a new version of my framework at sourceforge:
http://sourceforge.net/project/showfile ... _id=194062 below are the features and notes:
Notes:
This is a completely new re-write of the entire framework, using some of the more powerful PHP 5 libraries and concepts like PDO, SimpleXML and Reflections.
As a result the framework is not backwards compatible to PHP4.
Also I have gotten rid of the CMS section ( If there is a demand for the CMS, I will work on adding one, but it will be a completely new re-build from scratch )
Changes:
- Complete Re-Write, the framework works on PHP5+
- Added a Base Controller, Base Model, Base Config
- Removed the concept of plugins
- Found some really powerful PHP5 libraries to help in HTML to PDF conversion and Image Manipulations and added then to the libs folder.
- Introduced the concept of Localization, you can now set the Language of the current page and the framework will pull the content from that language.
For example:
$this->setLanguage('eng');
$this->loadContent('home'); // Will pull the content file views/content/eng/home.php
$this->setLanguage('fr');
$this->loadContent('home'); // Will pull the content file views/content/fr/home.php
Please let me know what you all think.
Thank you,
Mac