## Task Perform a custom action when a new user account is created. ## Solution The user service (`zfcuser_user_service`) provided by ZfcUser triggers an event (`register`) immediately before persisting the user account. If you have access to the service locator which ZfcUser has previously loaded it's services into, you can simply pull the user service and attach an event to it's internal event manager. ```php get('zfcuser_user_service')->getEventManager(); $zfcServiceEvents->attach('register', function($e) { $user = $e->getParam('user'); // User account object $form = $e->getParam('form'); // Form object // Perform your custom action here }); ``` If you can't get access to the user service instance directly, you can use the StaticEventManager to attach an event directly via the class name: ```php attach('ZfcUser\Service\User', 'register', function($e) { $user = $e->getParam('user'); // User account object $form = $e->getParam('form'); // Form object // Perform your custom action here }); ``` ## Retrieving the User Id If you need to retrieve the `user_id`, just attach to `register.post` and the user entity should have it. ## Example File: module/Application/Module.php ```php attach('ZfcUser\Service\User', 'register', function($e) { $user = $e->getParam('user'); // User account object $form = $e->getParam('form'); // Form object // Perform your custom action here }); } } ```