Hi, Since Zend is approaching 1.0 I've decided to start migrating some of our code to use it. My goal is to have sets of modules or components that would enable me to add functionality easily and with code reuse. My question is how to do that with zend framework (directory layout, which framework components use, where to fetch settings etc)
For example. I start a new project and my user wants an article page. This is dynamic and have two 'sets' of actions, one public and one private. public (every user can use - frontend) - view the list of articles - view one article - search for an article based on the title private (used with a login/password) - view the list of articles - view one article - search for an article based on the title and/or creation date - insert an article - update an article - delete an article An article has : one title, one description and one picture As a setting for the module I'd have a way to tell how many articles to show in the 'list of articles view' (i.e define the pagination). My article module (1.0) would be packaged as a zip/tar so the developer would fetch this, explode in the /, create the database tables, edit the settings and edit the view for a specific css layout. This package would have all the files necessary to make this module to work. Thanks.
