I'll assume ZF 1.11:
in your application.ini make sure these lines are here (may be a little over kill but it works):
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
resources.frontController.moduleControllerDirectoryName = "controllers"
resources.frontController.params.prefixDefaultModule = ""
resources.modules = ""
your path should look like:
/application
/configs
/controllers
/forms
/layouts
/models
/modules
/admin
/controllers
/models
/forms
/views
/filters
/helpers
/scripts
Bootstrap.php //in your admin folder bootstrap extends Zend_Application_Module_Bootstrap
/views
Bootstrap.php //application level bootstrap
/docs
/library
/public
the path requirements except for the bootstrap can be accomplished by running the ZF Tool command zf create module admin
The really important thing to remember is that each module needs a Bootstrap.php file at it's root. This facilitates (among other things) the autoloader.
<?php
class Admin_Bootstrap extends Zend_Application_Module_Bootstrap {
//put your code here
}
this is all you need for a module bootstrap.
[EDIT]
to select a different layout (create a second layout) for a controller (admin for example) the simple way is in each controller:
public function preDispatch() {
$this->_helper->layout->setLayout('admin');
}
if you need to change lots of layouts in lots of controllers you'll likely need a controller plugin (not my area of experience).