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.
You forgot to say in which file we should add those lines.
In which file?
Obviously nobody at Zend has the time to teel anyone where these changes should be placed.
The following should be added to your Bootstrap.php file.

protected function _initFrontModules() {
$this->bootstrap('frontController');
$front = $this->getResource('frontController');
$front->addModuleDirectory(APPLICATION_PATH . '/modules');
}
Obviously nobody at Zend has the time to teel anyone where these changes should be placed.
The following should be added to your Bootstrap.php file.

protected function _initFrontModules() {
$this->bootstrap('frontController');
$front = $this->getResource('frontController');
$front->addModuleDirectory(APPLICATION_PATH . '/modules');
}
How the zf confuse guys?
Why not explore some example rather than commend.
In ZF 1.1* you can create a modular application without touching the code just edit appliocation.ini
Example gere : http://updel.com/zend-framework-modular-application/
Wow - thanks KEVIN... appreciated.

I was starting to again feel like, if I don't just know, then why am at Zend.com trying to find the answer. I mean, c'mon, with the above being so clear now. pff
And how can i load a model class which is located in "modules/news/models/news.php"?
I'm using this modular structure:
application
default
controllers
models
views
admin
controllers
models
views

and i want to keep all my models in default/models and all modules can use. How can i do this???

When i made the class 'Apllication_Model_Test' the class was not found. What and WHERE i have to set up for i use my models on all modules?

Thanks for any help!!!
Renan30
Big thanks to Kevin. I have found this a few times to day at Zend - great docs, but the vital part of where to put the code is missing.
Easiest way to do module configuration is to do add the following code in configs/application.ini

resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
resources.modules=true

and removing the line
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"

In ZF 1.11,

I used zend tool:

zf create module default

Which adds a directories into : APPLICATION_PATH /modules/default
and appends to the application.ini config file:


resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
resources.frontController.params.prefixDefaultModule = "1"


I then moved my IndexController, ErrorController and view scripts into the default module's appropriate directories but got this error:

Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with message 'Invalid controller class ("Default_ErrorController")'

Removing this line from application.ini solves this problem:
resources.frontController.params.prefixDefaultModule = "1"
In response to Tiffany, I also found that keeping the resources.frontController.params.... line but changing it to blank works:

resources.frontController.params.prefixDefaultModule = ""
I do not understand why no mention of that file or directory is that this code Pharmacopoeia for example:

$ front-> setControllerDirectory (array (
'default' => '/ path / to / application / controllers',
'blog' => '/ path / to / application / blog / controllers'
));

All examples, tutorials or the vast majority do not understand what part they copied the codes mentioned, that I tell people that just start with zend.
this is the fastest, easiest and accurate way of creating module that i found after 2 days of my struggle and searching: http://www.christiansouth.com/php/using-zf-tool-to-create-a-modular-application/
Hi Tiffany, I have the same problem when use "prefixDefaultModule=true" with "Default_ErrorController".

I solved the problem by using this:
resources.frontController.prefixDefaultModule = "Default"

Don't remove "Default" from ErrorController because it seems not to be natural. What if you don't want the default module named "default"? :)
I know that this stuff is great and free, but come on guys, is it to hard to just explain how to use specific layouts for each module? Jesus...
@Ilich

And how can i load a model class which is located in "modules/news/models/news.php"?

It depends exactly on how you have named things. Here is how I solved the same problem.

My file structure is:
application > modules > module which contains a folder for controllers, models, views and a Bootstrap.php file.

My module Bootstrap.php file is:

class modulename_Bootstrap extends Zend_Application_Module_Bootstrap
{

}


I created a basic model which looks something like this:

class Module_Model_Bio
{
    
    public function fetchAll() 
    {
    // fetch all records from the table
    $rowset = $this->_dbTable->fetchAll();
         
    return $rowset->toArray();
     
    } //end fetchAll
    
}


Then in my controller, I can instantiate this model with the following (note the lowercase module after the keyword new):

class Module_BioController extends Zend_Controller_Action
{

    public function indexAction()
    {
        [b]$bio = new module_Model_Bio();[/b]
        $this->view->entries = $bio->fetchAll();
    }
}


I could be wrong, but I believe it is lowercase because that is how my module was named and how it is written in my module's Bootstrap.php file. If I instantiate it in a different case (camel case) it will not be found.
@Ilich

Please note the rule following line:

[b]$bio = new module_Model_Bio();[/b]


should just be:

$bio = new module_Model_Bio();
I wrote a short document for myself that describe how to implement this, I also attached a skeleton for a modules based application:
http://www.ranweb.net/wpEn/?p=406
Maybe it will help somebody...

+ Add A Comment

Please do not report issues via comments; use the ZF Issue Tracker.

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