-
Notifications
You must be signed in to change notification settings - Fork 339
How to perform a custom action when a new user account is created
Scraper Dave edited this page Oct 12, 2013
·
6 revisions
Perform a custom action when a new user account is created.
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
$zfcServiceEvents = $locator->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
$em = \Zend\EventManager\StaticEventManager::getInstance();
$em->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
});
If you need to retrieve the user_id
, just attach to register.post
and the user entity should have it.
File: module/Application/Module.php
<?php
class Module
{
public function onBootstrap(MvcEvent $e)
{
$em = \Zend\EventManager\StaticEventManager::getInstance();
$em->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
});
}
}