Sent by mistake directly to repsondent, so forward to list...
On 23/04/2010 13:28, Matthew Weier O'Phinney wrote:
-- Mike A<[email protected]> wrote
(on Friday, 23 April 2010, 11:37 AM +0100):
Are these the only files in the ZF MVC layer?
Zend/
Application.php
Application/
Exception.php
Exception.php
Loader.php
Loader/
Autoloader.php
Autoloader/
Interface.php
Exception.php
Oh, heck no! MVC layer also includes minimally Controller, Layout, and View;
A number of other components can be considered "MVC", as they either
build on these components, or are typically only used in MVC paradigms:
Form, Navigation, Paginator, etc. When it comes to the "M", or "Model",
part of MVC, there's classes like Zend_Db, the Zend_Service tree,
Zend_Soap, and more to look at -- basically, anything that can assist
you in writing your models (which could included just about anything in
the framework).
Is there a direct reference for the MVC part of the ZF library
someone can point me to please?
The Quick Start guide details writing your first MVC application, and
touches on most of the core components you would use to do so.
http://framework.zend.com/manual/en/learning.quickstart.html
Thank you Matthew.
The example I gave was from a response in a thread about autoloading.
What I want to establish is a reference to all the MVC components
necessary for a minimum ZF framework set-up - then I shall distinguish
it from non-core components. Couldn't find a precise reference though.
Can someone direct me to a direct reference (one I do not have to sort
through) or supply a list please. I need an authoritative source to
reference in a written work.
TIA...