public function getActionMethod(Enlight_Controller_Request_Request
$request) { $action =
$request->
getActionName();
if (empty($action)) { $action =
$this->
getDefaultAction();
$request->
setActionName($action);
} $formatted =
$this->
formatActionName($action);
return strtolower($formatted[0
]) .
substr($formatted, 1
) . 'Action';
} /**
* Returns the full path of the controller name by the given request class.
* To generate the full controller path the module and controller name must be set in the given request object.
* The module and controller path is imploded by '_'
*
* @return string
*/