Menu

Rinoceo CMS / Blog: Recent posts

Install.php

just uploaded a very alpha install.php

These small installer loads all further packages from the server. At the Moment it downloads the packeges from the rinoceo.de Website.

See download area.

(Contains an Export at Revision 10)

Posted by Alexander Drexler 2011-12-01 Labels: install

Code-Details: Epleo_Autoload and Epleo_Config

Hello,

after publishing the current Version of the CMS i though it could be a good idea to post some background information on how it works and why i decided to do it that way.

Autoload

However, there is so much that i don't know where to start... Well lets start with the Autoload. I hab to work with the ZendFramework and (outside of PHP) with Java. The way they use to map class-names to File-names seems to be very easy. So i did it the same way. The classes in the lib dir should work with the Zend Autoloader, but i havn't tried it jet. So My_Cool_Class will be searched in "<basic-lib-dir>/My/Cool/Class.php"
To be compatible with older Versions of the CMS it also takes a look in "<basic-lib-dir>/<for-all-module-folders>/class.my_cool_class.php" - but i think there are only two or three classes left that were not refaktored right now.... read more</for-all-module-folders></basic-lib-dir></basic-lib-dir>

Posted by Alexander Drexler 2011-11-28 Labels: config autoload code details