tags:

views:

58

answers:

4

I want to find out from community if there are any good applications out there that can be used as a model or reference application for implementing OOP and Design Patterns like MVC?

Edit: I am mainly looking for reference applications like magento and not frameworks like Zend Framework.

+1  A: 

CodeIgniter is an OO & MVC framework for PHP.

Frank
A: 

Magento is one

Click Upvote
No upvotes? ;p
Click Upvote
+1  A: 

Just look at any framework, the Zend Framework for example. Littered with them.

Front Controller, MVC, Factory, Singleton loads!

xenon
A: 

Check out WordPress. It supports plug-ins to modify output, and hooks for many other aspects. That's not to say it's a "reference" platform, but it has some really interesting implementations.

Brent Baisley
Wordpress is far from reference for OO design. They use a ton of globals, both variables and functions.
Artem Russakovskii
Wordpress in fact could serve as a reference of how NOT to write applications, the fact that it more or less does what it is intended to do is a miracle in itself :)
Ramuns Usovs