I have modified ZfcUser register form in my module (Module.php) with two new fields "firstname" and "lastname" like this:
public function onBootstrap($e)
{
$events = $e->getApplication()->getEventManager()->getSharedManager();
$zfcServiceEvents = $e->getApplication()->getServiceManager()->get('zfcuser_user_service')->getEventManager();
$events->attach('ZfcUser\Form\Register', 'init', function($e) {
$form = $e->getTarget();
$form->add(array(
'name' => 'firstname',
'type' => 'Text',
'options' => array(
'label' => 'First name: ',
),
));
$form->add(array(
'name' => 'lastname',
'type' => 'Text',
'options' => array(
'label' => 'Last name: ',
),
));
});
$events->attach('ZfcUser\Form\RegisterFilter', 'init', function($e) {
$filter = $e->getTarget();
$filter->add(array(
'name' => 'firstname',
'required' => true,
'validators' => array(
array(
'name' => 'StringLength',
'options' => array(
'min' => 3,
'max' => 255,
),
),
),
));
$filter->add(array(
'name' => 'lastname',
'required' => true,
'validators' => array(
array(
'name' => 'StringLength',
'options' => array(
'min' => 3,
'max' => 255,
),
),
),
));
});
$zfcServiceEvents->attach('register', function($e) {
$user = $e->getParam('user'); // User account object
$form = $e->getParam('form'); // Form object
//var_dump($form->get('firstname')->getValue()); die;
//var_dump($user); die;
});
$zfcServiceEvents->attach('register.post', function($e) {
$user = $e->getParam('user');
});
}
Registration form looks ok. I can see to additional fields and validation is working fine. Problem is that I can't set this two new fields in user object:
$user->setFirstname($form->get('firstname')->getValue());
It is saying that this property doesn't exists. Can you explain what I'm doing wrong please?