Hello everyone, Trying to use .ini files for the configuration of Zend Forms.
How can I port the following code to a .ini form configuration?
$form->addElement('password', 'password1');
$form->addElement('password', 'password2', array(
'validators' => array(
array('identical', false, array('token' => 'password1'))
)
));
I have
elements.password.type= "password"
...
and
elements.password2.options.validators.identical = ?
Thank you for your time,
Armand
