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'
)
);