Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Robert Basic's Blog:
Grouping Zend Framework controllers in subdirectories
Apr 18, 2011 @ 14:08:25

Robert Basic has a new post today showing you how you can group your controllers in your Zend Framework application into subdirectories for easier organization.

Thanks to a discussion on the Zend Framework mailing list I learned about a new feature, a feature that allows for grouping action controllers in subdirectories! Well, this is more of an unknown and undocumented feature than new, as it is the part of the framework for at least 3 years. Why am I so hyped about this? Because it allows for better code organisation on larger projects. Heck, it might be useful on smaller ones too.

He gives an example of how it might be laid out and a few helpful hints he learned when trying it out:

  • The subdirectory separator in the URI is the underscore and not the slash.
  • The subdirectory name is uppercase: Subdirectory, not subdirectory. In the URI it's lowercase.
  • The view directories for these subdirectories are lowercased, and not uppercase.
tagged: zendframework controller subdirectory group

Link:


Trending Topics: