Tagged Questions
The zend-validate tag has no wiki summary.
8
votes
3answers
793 views
In a Zend_Form, how to avoid Zend_Validate_Email from generating multiple errors?
I am building a ZendFramework application which as a login form asking for an email address and password - it seemed to make sense to validate the email address before hitting the database with the ...
4
votes
2answers
226 views
Validating number of options in Zend Form Multiselect
I have an Multiselect Zend Form element with many options. I have to validate the number of selected options (at least N options and at most M options are selected). I want the error message to be ...
4
votes
4answers
236 views
How to make this Filter run after this Validator
I have an element. I want to add a custom validator and custom filter to it. The validator makes sure the input is one of several permitted values, then the filter adds some custom values to the ...
3
votes
1answer
44 views
Zend_Validate_Date just doesn't work properly
It appears that Zend_Validate_Date just simply doesn't work properly. For example:
$validator = new Zend_Validate_Date(array('format' => 'yyyy'));
This is a simple validator that should only ...
3
votes
1answer
46 views
Zend Validators and multidimensional array
How do i validate multidimensional array in Zend Framework (Zend_Filter_Input)?
Example:
Input must be array
Input must have 'roles' and 'name'
'roles' must be array
All element in 'roles' must be ...
3
votes
1answer
90 views
Zend MultiCheckbox: set maximum selection
Here I am again with an easy question.
Is there an existing zend validator to set a maximum to the boxes an user can select.
I want them to select no more than 3 boxes.
I've searched the web and the ...
3
votes
2answers
152 views
How to validate in Zend Framework if a float/double is equal or greater/less than a min?
I've a simple question for which I've not found an answer and that is
How can I use the built-in Zend Validator to test if a float/dobule is Greater than or Equal of a min?
I've already searched for ...
3
votes
3answers
82 views
Set a single error message for a Email field in Zend
I am facing an small issue regarding the Email Validation in my Zend Form.
My Code for the Email field is as
$emailId = new Zend_Form_Element_Text('email');
$emailId->setLabel("Email Adresse")
...
3
votes
1answer
103 views
Zend_Validate_EmailAddress versus filter_var(…, FILTER_VALIDATE_EMAIL)
Of Zend_Validate_EmailAddress and filter_var(..., FILTER_VALIDATE_EMAIL), which is better when validating an email address and why?
3
votes
2answers
579 views
Zend Form Validate Range Date
who gives me a hand to create a custom validator for Zend Framework, which checks that a date is in to a range?
Example:
dateGT = 2011-09-05
dateLT = 2011-07-05
if the form field is set to:
...
3
votes
1answer
741 views
zend validate multi select box
i am using zend validations in my form and i could not validate a multi select box in my form.
This is my multi select element in the form:
$days = new Zend_Form_Element_Select('day');
...
3
votes
2answers
390 views
How to translate messages of a custom validator in Zend Framework?
I created a custom validator by extending Zend_Validate_Abstract to validate a CAPTCHA input regarding Zend_Captcha:
class My_Validate_Captcha extends Zend_Validate_Abstract {
const CAPTCHA = ...
3
votes
2answers
765 views
Zend Framework and string covertation using iconv
One site was moved to another server where is installed Solaris and other iconv settings. Now, when I validate anythink with "StringLength" function from Zend Framework my scripts fail with this ...
3
votes
2answers
804 views
How can I output HTML from a Zend Validation Error?
I am trying to get this Zend Validator to output a link that goes to a resetpass form. At the moment, it is simply outputting the HTML as text. Any ideas on how to get it writing to the page as HTML?
...
3
votes
1answer
3k views
Zend Framework: How do I set a custom validator on a form element?
I'm writing a custom validator that checks that at least one field has a value. I want to validate that either 'namefield' or 'idfield' has a value. One of them can be empty, or both can have a value, ...
2
votes
1answer
63 views
How to validate a element based on another element's value?
I have a Client ID, and a Unique Client hash. When I register these data, it works fine.
Just to be clear, I do not generate the hash.
The code I use to validate if that unique hash already exists:
...
2
votes
2answers
76 views
Zend Validate - Multiple Values
I want to validate a form element that is allowed to contain multiple email addresses, separated by a comma and a space.
Here's the code I have:
class My_Validate_EmailAddresses extends ...
2
votes
2answers
157 views
Zend_Validate_Db_RecordExists with Doctrine 2?
I'm using Doctrine 2 in a Zend Framework application and require functionality similar to Zend_Validate_Db_RecordExists and Zend_Validate_Db_NoRecordExists.
For example, when a user enters a new ...
2
votes
2answers
96 views
Zend EmailAddress Validation returning multiple errors
I am unable to make Zend_Validate_EmailAddress show only 1 error message when the user enter invalid email address. The code is
$email = new Zend_Form_Element_Text('email');
...
2
votes
1answer
52 views
Zend_form: doesn't accept Latin characters(ú, ë, etc?
I can't get Zend_form to accept any inserted latin characters (ü, é, etc).
Even if I'm not validating it doesn't accept this.
Does anyone now how to get this to work?
Gr. Tosh
2
votes
2answers
67 views
Label of element as variable in error message for validation
Is it possible to use a variable inside the error message referring to the label of the form element? It's possible to map custom variables like %hostname% (in email validator) and the %value% is also ...
2
votes
3answers
355 views
regular expression for phone number in php
I am using zend form validation for a phone number. and I want, user should enter phone number in these formats:
"+91-151-1234567", "01234567891",
"+912345678901"
so i am using this regular ...
2
votes
2answers
328 views
Why does Zend Framework Validate fail for MimeType, when calling isValid()
This has stumped me for the last few hours.
// Using just straight up FINFO detects the mime type
$oFileInfo = new finfo( FILEINFO_MIME_TYPE );
$sMimeType = ...
2
votes
2answers
981 views
Zend Validation Db_NoRecordExists and exclude option
I'm trying to use the "exclude" option for a Db_NoRecordExists validator, cause when I'm "editing" the element it always return me back a "duplicated" error, as usual.
What I aim to is to tell to the ...
2
votes
3answers
477 views
Zend Model validation
I'm working on Zend application, but have no much experience with Zend, so just relying on my RubyOnRails experience.
From couple articles I've found that most of validation is implemented on Forms ...
2
votes
1answer
462 views
Zend Validate - How do you pass context values from a different subform?
I've split up a Form into 3 SubForms and for one of the elements, in the last SubForm, I am creating a Validator that extends Zend_Validator_Abstract.
This validator needs to check that a value, on ...
2
votes
3answers
6k views
Zend form validation
I am using Zend Form to create dynamic form.
I have Zend Form validation too.
Trying to remove Validation dynamically, but not getting any success.
Can you plz help me to remove Zend Validation.
...
2
votes
7answers
1k views
Should validation be done in Form objects, or the model?
This question is mainly geared towards Zend in PHP, although it certainly applies to other languages and frameworks, so I welcome everyone's opinion.
I've only recently been using the Zend framework, ...
1
vote
1answer
54 views
Add a Validator 2 times in an Element on Zend
I made a Validator that receives a class instance and a function name and then executes it.
This is usefull for execute many custom validations through database table mappers.
The problem is that I ...
1
vote
2answers
62 views
How does one create a validator that depends on more than one value for Zend_Form?
I've got a form that has a single text field (for company):
class Cas_Form_Company extends Zend_Form
{
public function init()
{
$this->addElement('hidden', 'id');
...
1
vote
2answers
123 views
Zend - Can you use a validator to check a username password combination in a Zend_Form?
I have examined Zend Framework: Zend_Validate_Db_RecordExists and
Zend_Validate_Db_NoRecordExists, and observed that you can check columns in a database table to see if the value in your form appears ...
1
vote
2answers
41 views
How do I hash an element in a registration form in Zend?
I tried looking around and I couldn't find anything. I want to hash the password on the registration page before it inserts into the database. I did some searching, and I found some hash related ...
1
vote
1answer
57 views
Zend_From Validator only if the field input has changed?
I'm writing a Backend System and I want to allow the users to change their email address.
I've written a custom validator to check if the email-address the user has entered already exists in my ...
1
vote
2answers
90 views
How to validate a field of Zend_Form based on the value of another field?
I'm trying to add a custom validator to a field. It should take into account the value of another field. E.g. field A should be at most B+50%.
I've made a class implementing Zend_Validate_Interface, ...
1
vote
1answer
63 views
Validating date format with Zend_validator
How can I validate the date format (dd-mm-yyyy) using zend_validate?
1
vote
1answer
87 views
Zend Form MutliCheckbox Validate Number of Checked Items
I have a Zend Form with a MutliCheckbox element.
I would like to validate the number of checked items, i.e. verify that exactly 3 items are checked.
Can I do it with any current validates or do I ...
1
vote
2answers
52 views
Zend_Validate good strategy to avoid repetition of code
I'm am currently building two custom validators that extends Zend_Validate_Abstract which are named respectively Lib_Validate_TimeAfter and Lib_Validate_TimeBetween. The names a pretty straight ...
1
vote
2answers
112 views
Zend Honeypot Validation
On my bootstrap I don't have a class, it's a simple php file:
I have added there:
$loader = Zend_Loader_Autoloader::getInstance ();
$loader->setFallbackAutoloader ( true );
...
1
vote
2answers
358 views
Zend Framework - Where should we place our custom Validators?
We can read here how to write:
http://framework.zend.com/manual/en/zend.validate.writing_validators.html
class MyValid_Float extends Zend_Validate_Abstract
{
1)
Where should we place this?
...
1
vote
1answer
188 views
Need help with Zend form textbox validation
Currently Im developing a website with Zend framework.
I need help with my suburb name validation
I need the validation to check if the input is in the following format
Suburb Name comma symbol ...
1
vote
1answer
111 views
How should Zend_Validator_StringLength extended?
How should Zend_Validator_StringLength extended?
MyValidator:
class Zend_Validate_StringLengthNoTags extends Zend_Validate_StringLength {
public function __construct($options = array()) {
...
1
vote
1answer
310 views
Zend Form Validation:: Does exist oposite validator to Identical?[how to check that input not identical to 'str']
Zend Form Validation:: Does exist oposite validator to Identical?
[how to check that input not identical to 'str']
Thanks
1
vote
1answer
852 views
Problem with zend validate on zend form element
I used to have this form element to validate an email and display an error message if the format was invalid:
$email_users = new Zend_Form_Element_Text('email_users');
...
1
vote
1answer
534 views
Zend changing validation error behavior: wrapping element in another tag
I've set a validator for the email so it can't be empty.
This is the markup of the usual form that zend_form generates:
<dt id="email-label"><label class="required" ...
1
vote
2answers
627 views
Validate with Zend_Validate_Date on a time string
Hey all I'm trying to validate a 'time' field using Zend Framework.
The docs seem to be pointing out that the following:
$tstarttime = $form->createElement('text','t_start_time');
...
1
vote
1answer
225 views
Zend Validate, Display one message per validator
I am validating an email address using zend_validate_email.
For example, for email address aa@aa it throws several error messages including very technical describing that DNS mismatch (:S).
I am ...
1
vote
1answer
299 views
Recommended place for pre-translated Zend Framework resources
Since zf 1.10 Zend Framework ships with pre-translated validation messages. They are outside the library path.
The manual illustrates how to load these in your bootstrap.
$translator = new ...
1
vote
1answer
1k views
How do I write a custom validator for a zend form element with customized error messages?
I have a question field with a list of allowed characters : A-Z,0-9,colon (:), question mark (?), comma(,), hyphen(-), apostrophe (').
I have the regex which works fine, in the fashion :
...
1
vote
2answers
852 views
Date validator that validates if the date is greater than or equal to today with Zend Framework
$form = new Zend_Form();
$mockDate = new Zend_Form_Element_Text('mock');
$mockDate->addValidator(???????);
$form->addElements(array($mockDate));
$result = $form->isValid();
if ($result) ...
1
vote
2answers
2k views
How to create a datetime validator in a Zend Framework form?
By default a Zend Framework date validator uses the date format yyyy-MM-dd:
$dateValidator = new Zend_Validate_Date();
But I want to add hour and minute validation. In other words, I want to ...