Skip to content

Instantly share code, notes, and snippets.

@dmregister
Created April 29, 2015 14:59
Show Gist options
  • Save dmregister/5966aa6692af931a1d4b to your computer and use it in GitHub Desktop.
Save dmregister/5966aa6692af931a1d4b to your computer and use it in GitHub Desktop.
validator
$inputFilter->add($factory->createInput(array(
'name' => 'cenLat',
'required' => true,
'validators' => array(
array(
'name' => 'NotEmpty',
'options' => array(
'messages' => 'YOUR CUSTOM ERROR MESSAGE',
'type' => array('integer', 'float'),
)
)
)
)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment