Jos
Jos

Reputation: 325

ZEND modular application

Can anybody provide me the ZEND modular running example.All working as i m really tired trying things.

Regards Jos

Upvotes: 2

Views: 941

Answers (4)

Matthew Setter
Matthew Setter

Reputation: 2447

What about Zend Framework in Action by Rob Allen? It's a great book and Rob has a really easy going style and explains the multitude of topics in a very straight forward manner.

Alternatively, clone a copy of my Zend Framework development project from github. I am writing it, specifically to cover all of the various concepts that are available in Zend Framework; it's using modules.

All the best,

Matt

Upvotes: 0

knodumi
knodumi

Reputation: 2747

create modular application with zend by Jeroen Keppens.

Upvotes: 2

Reece45
Reece45

Reputation: 2779

It might be a little big, but Magento is based on the Zend Framework and is very modular. The Zend classes in there are slowly being replaced by Magento-specific ones, but they still hold on to a lot of Zend Framework stuff like controllers, helpers, models.

They offer configuration for each module to hook into the router system, the admin, the templates (you may not even have to edit the template file). You can also override models, controllers, and other from the modules using the module config.

To be honest, I haven't looked that much, but when it comes to extendability: Magento is tough to beat. To use it as a base for some other system, there'd need to be improvements in other areas like Performance, Scalability, Bugs, Complexity, and Compatibility.

Upvotes: 0

Bozhidar Batsov
Bozhidar Batsov

Reputation: 56595

One idea is to go to the web site of the excellent book "Zend Framework 1.8 Application Development" and download the source code of the book(which is freely available). The application completed in chapter 12 is modular and features many of the capabilities of the framework as well many great development practices so I could only assume that getting acquainted with such an app will be beneficial for you.

Upvotes: 0

Related Questions