我有2个自定义输入字段密码和autoGeneratePw。 验证者只应在取消选中autoGeneratePw时验证密码输入。我该如何实现?
$form->add('autoGeneratePw', 'checkbox', array(
'label'=>'Auto generate password',
'data' => true,
'mapped' => false,
'required' => false,
));
$form->add('password', 'repeated', array(
'type' => 'password',
'first_name' => 'Password',
'second_name'=> 'RetypePassword',
'invalid_message' => 'Password are not the same',
));
答案 0 :(得分:1)
如果您担心生成的密码无法通过验证,那么您做错了。 ; - )