View Single Post
  #6 (permalink)  
Old 03-12-2008, 04:26 PM
dflood dflood is offline
Junior Member
 
Join Date: Mar 2008
Posts: 4
Default

No, admin is the name of one of my modules. User is the name of the controller, and edit is the action.

I have defined multiple modules in my bootstrap like this:

PHP Code:
$front Zend_Controller_Front::getInstance();
//$front->setControllerDirectory('../application/controllers');
// configure router to allow for multiple modules
$front->setControllerDirectory(
   array(
       
'default' => '../application/controllers',
       
'admin'   => '../application/controllers/admin',
       
'public'  => '../application/controllers/public'
   
)
); 
Reply With Quote