Matt
Matt

Reputation: 5567

Example Zend Framework Project 1.8+

Let me begin by saying this; I know that similar questions exist, but they are a couple years old and ZF is changing quickly. I want a more recent example.

It has been noted a lot that the documentation on Zend Framework is lacking. I've read a lot of it and used it to start up a few applications, but I find that it is really difficult to understand how to do things properly. My biggest issue is where various components belong, where they should be instantiated, etc.

I am trying to follow MVC best practices, with thin controllers, fat models. I am also trying to use the latest MVC stack including Zend_Application and the recommended Bootstrap classes.

I want to see an example site that uses best practices for the framework which can demonstrate the following components (ideally):

I know I do not need to use everything in the framework, but I want to try to use whatever may fit my needs and I'd like to learn more about it.

So do you know of a good example that uses the Zend MVC and some or all of these components? And one that follows a lot of best practices? Ideally, it is using at least 1.10, but anything 1.8 or later will suffice.

Upvotes: 5

Views: 2242

Answers (2)

takeshin
takeshin

Reputation: 50688

I'd recommend the following resources:

To answer the other questions:

  • Zend Cache has an action helper and application resource to make it really simple in usage,
  • Zend Feed in action may be seen in ZFPlanet,
  • Zend Paginator may be set up in bootstrap, using static methods.

Upvotes: 2

user594791
user594791

Reputation: 617

You can check out cms systems build in ZF. One is TomatoCMS. The list of Projects & Applications using ZF is here. Zend Framework website is build in ZF too.

Upvotes: 1

Related Questions