The Ultimate Weblog System

Welcome to Geeklog
Thursday, August 28 2008 @ 08:52 PM EDT

Geeklog 2: MVCnPHP2 Released

Geeklog 2The Model-View-Controller (MVC) Framework for Geeklog 2 has been released and is considered stable. This is a PHP5 implementation of the MVC design pattern. The biggest change in this release is it will compile the XML configuration file to a PHP file if it is told to:

<MVC_CONFIGURATION COMPILE="true">
...
</MVC_CONFIGURATION>

Users of previous versions will need to uninstall the old version. This new version is available as a PEAR-compatible package making installation easy:

$> pear install http://www.tonybibbs.com/Geeklog_MVCnPHP-2.0.1.tgz

Those interested in developing plugins for Geeklog-2 are encouraged to become familiar with the package as many of the plugins will use the same framework.

Enjoy!

--Tony

Story Options

Geeklog 2: MVCnPHP2 Released | 1 comments | Create New Account
The following comments are owned by whomever posted them. This site is not responsible for what they say.
Geeklog 2: MVCnPHP2 Released
Authored by: Adagio on Wednesday, May 11 2005 @ 01:07 PM EDT
I've been looking at Drupal lately, and am a bit frustrated about it because of it's developers allergy to using classes.

I'm looking through the code of this MVC framework and checking out the wiki at the moment, and I must say this looks very interesting. The code is clean, well commented and it uses PHP 5's nice new abilities. Still need to fill some holes though :-). I like the concept of actions, as I consider this to realise Drupals nice hook system in a more elegant and flexible way.

Looking forward to seeing this mature.