Programmer's Reference Guide

Plugins

Using a Conventional Modular Directory Structure

Introduction

The Conventional Modular directory structure allows you to separate different MVC applications into self-contained units, and re-use them with different front controllers. To illustrate such a directory structure:

  1. docroot/
  2.     index.php
  3. application/
  4.     default/
  5.         controllers/
  6.             IndexController.php
  7.             FooController.php
  8.         models/
  9.         views/
  10.             scripts/
  11.                 index/
  12.                 foo/
  13.             helpers/
  14.             filters/
  15.     blog/
  16.         controllers/
  17.             IndexController.php
  18.         models/
  19.         views/
  20.             scripts/
  21.                 index/
  22.             helpers/
  23.             filters/
  24.     news/
  25.         controllers/
  26.             IndexController.php
  27.             ListController.php
  28.         models/
  29.         views/
  30.             scripts/
  31.                 index/
  32.                 list/
  33.             helpers/
  34.             filters/

In this paradigm, the module name serves as a prefix to the controllers it contains. The above example contains three module controllers, 'Blog_IndexController', 'News_IndexController', and 'News_ListController'. Two global controllers, 'IndexController' and 'FooController' are also defined; neither of these will be namespaced. This directory structure will be used for examples in this chapter.

Note: No Namespacing in the Default Module
Note that in the default module, controllers do not need a namespace prefix. Thus, in the example above, the controllers in the default module do not need a prefix of 'Default_' -- they are simply dispatched according to their base controller name: 'IndexController' and 'FooController'. A namespace prefix is used in all other modules, however.

So, how do you implement such a directory layout using the Zend Framework MVC components?

Specifying Module Controller Directories

The first step to making use of modules is to modify how you specify the controller directory list in the front controller. In the basic MVC series, you pass either an array or a string to setControllerDirectory(), or a path to addControllerDirectory(). When using modules, you need to alter your calls to these methods slightly.

With setControllerDirectory(), you will need to pass an associative array and specify key and value pairs of module name and directory paths. The special key default will be used for global controllers (those not needing a module namespace). All entries should contain a string key pointing to a single path, and the default key must be present. As an example:

  1. $front->setControllerDirectory(array(
  2.     'default' => '/path/to/application/controllers',
  3.     'blog'    => '/path/to/application/blog/controllers'
  4. ));

addControllerDirectory() will take an optional second argument. When using modules, pass the module name as the second argument; if not specified, the path will be added to the default namespace. As an example:

  1. $front->addControllerDirectory('/path/to/application/news/controllers',
  2.                                'news');

Saving the best for last, the easiest way to specify module directories is to do so en masse, with all modules under a common directory and sharing the same structure. This can be done with addModuleDirectory():

  1. /**
  2. * Assuming the following directory structure:
  3. * application/
  4. *     modules/
  5. *         default/
  6. *             controllers/
  7. *         foo/
  8. *             controllers/
  9. *         bar/
  10. *             controllers/
  11. */
  12. $front->addModuleDirectory('/path/to/application/modules');

The above example will define the default, foo, and bar modules, each pointing to the controllers/ subdirectory of their respective module.

You may customize the controller subdirectory to use within your modules by using setModuleControllerDirectoryName():

  1. /**
  2. * Change the controllers subdirectory to be 'con'
  3. * application/
  4. *     modules/
  5. *         default/
  6. *             con/
  7. *         foo/
  8. *             con/
  9. *         bar/
  10. *             con/
  11. */
  12. $front->setModuleControllerDirectoryName('con');
  13. $front->addModuleDirectory('/path/to/application/modules');

Note: You can indicate that no controller subdirectory be used for your modules by passing an empty value to setModuleControllerDirectoryName().

Routing to Modules

The default route in Zend_Controller_Router_Rewrite is an object of type Zend_Controller_Router_Route_Module. This route expects one of the following routing schemas:

  • :module/:controller/:action/*

  • :controller/:action/*

In other words, it will match a controller and action by themselves or with a preceding module. The rules for matching specify that a module will only be matched if a key of the same name exists in the controller directory array passed to the front controller and dispatcher.

Module or Global Default Controller

In the default router, if a controller was not specified in the URL, a default controller is used (IndexController, unless otherwise requested). With modular controllers, if a module has been specified but no controller, the dispatcher first looks for this default controller in the module path, and then falls back on the default controller found in the 'default', global, namespace.

If you wish to always default to the global namespace, set the $useDefaultControllerAlways parameter in the front controller:

  1. $front->setParam('useDefaultControllerAlways', true);

Plugins

Comments

The directory examples here don't seem to match the recommended layout here
where the default module is a level higher than the modules directory.
Is there a way i can use different layouts for different modules
@Posted by: Imran Zulfiqar on: 2010-04-22 10:27:31

yes
Yeah, great, *claps*. WHERE EXACTLY is this supposed to be configured?

This is the same problem throughout the ZF documentation! Stop crapping on about how awesome the framework is and put the examples in CONTEXT!
@ Imran Zulfiqar & Jebas

The layout shipped with ZF is implemented as a front controller plugin.
You can easily extend that one and work some magic to switch the layout according to the requested module. And configure the layout resource to use your own class.

My take (on pastebin) :
http://pastebin.org/358208

And in application.ini :

resources.layout.layout = layout
resources.layout.layoutPath = APPLICATION_PATH "/views/layouts"
resources.layout.pluginClass = "My_Controller_Plugin_ModuleLayout"
Please don't use 'con' as example directory name to show how "setModuleControllerDirectoryName" works. 'con' is a forbidden foldername on windows bases machines.

See: http://www.theinquirer.net/inquirer/news/1023739/windows
I have to agree with Jebas, where exactly are you supposed to configure this? I've set up the application/modules directory structure and am accessing controllers just fine with e.g., /MyWebsite/module/controller/action, however, I still must include or require resources such as Storefront_Model_CartModel.
I've tried to configure in my bootstrap,

public function run()
{
parent::run();
$front = $this->getResource('FrontController');
$front->addModuleDirectory('application/modules');
}

and this appears to work (no exceptions thrown) but to no avail, I still need to include or require.

+ Add A Comment

If you have a JIRA/Crowd account, we suggest you login first before commenting.
  • BBCode is allowed in the comment markup

  •   _  _    _    _    _    _      ___      ____    
     | \| || | || | || | |  | ||   / _ \\   |  _ \\  
     |  ' || | || | || | |/\| ||  | / \ ||  | |_| || 
     | .  || | \\_/ || |  /\  ||  | \_/ ||  | .  //  
     |_|\_||  \____//  |_// \_||   \___//   |_|\_\\  
     `-` -`    `---`   `-`   `-`   `---`    `-` --`  
                                                     
    
  • Select a Version

    Languages Available

    Components

    Search the Manual