I ask because in my Zend Framework app I use some view scrips that do not have an action associated with them. (Similar to the example on page 102 in the Zend Pro Framework Techniques book http://books.google.com/books?id=znA1LgQSxsoC&lpg=PP1&dq=Pro%20Zend%20Framework%20Techniques%3A%20Build%20a%20Full%20CMS%20Project&pg=PP1#v=onepage&q&f=false)
and because Zend_Tool does not allow you to create an view inside of a module(as far as I can tell)…. it will create a view in side a module only if you use
zf create action name controller-name[=Index] view-included[=1] module
Any thoughts on this would be appreciated.
Are you creating “partial” view scripts? A partial view script is a view script that helps you reuse code in multiple view scripts. They are commonly named with an underscore to signify that they are a partial view script. It’s perfectly acceptable to have a partial view script without a controller action.