我在我的模块(Module.php)中修改了ZfcUser寄存器表单,其中包含两个新字段“firstname”和“lastname”,如下所示:
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');
});
}
注册表格看起来不错。我可以看到其他字段,验证工作正常。 问题是我无法在用户对象中设置这两个新字段:
$user->setFirstname($form->get('firstname')->getValue());
据说这个属性不存在。 你能解释一下我做错了吗?
答案 0 :(得分:4)
好的就是解决它。在我的module.config.php中,我不得不添加:
'doctrine' => array(
'driver' => array(
// overriding zfc-user-doctrine-orm's config
'zfcuser_entity' => array(
'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver',
'paths' => __DIR__ . '/../src/User/Entity',
),
'orm_default' => array(
'drivers' => array(
'User\Entity' => 'zfcuser_entity',
),
),
),
),
'zfcuser' => array(
// telling ZfcUser to use our own class
'user_entity_class' => 'User\Entity\User',
// telling ZfcUserDoctrineORM to skip the entities it defines
'enable_default_entities' => false,
),
然后用我的扩展ZfcUser \ Entity \ User:
namespace User\Entity;
use ZfcUser\Entity\User as ZfcUser;
class User extends ZfcUser
{
/**
* @var string
*/
protected $firstname;
/**
* @var string
*/
protected $lastname;
/**
* Get firstname.
*
* @return string
*/
public function getFirstname()
{
return $this->firstname;
}
/**
* Set firstname.
*
* @param string $firstname
* @return UserInterface
*/
public function setFirstname($firstname)
{
$this->firstname = $firstname;
return $this;
}
/**
* Get lastname.
*
* @return string
*/
public function getLastname()
{
return $this->lastname;
}
/**
* Set lastname.
*
* @param string $lastname
* @return UserInterface
*/
public function setLastname($lastname)
{
$this->lastname = $lastname;
return $this;
}
}
全部完成本教程http://circlical.com/blog/2013/4/1/l5wftnf3p7oks5561bohmb9vkpasp6