Tagged Questions
2
votes
4answers
157 views
Zend_Validate_Db_RecordExists exclude logic issue
I've got a form for a job application, where administrator needs to pick from the list of certain user ids. The list contains only user ids of type "employer", however I want to validate the ...
3
votes
1answer
295 views
Zend Form Validation and Filtering without Zend Forms
Is there a way to validate and filter pure HTML forms with Zend Validation and Zend Filter classes ? Please give some example if you have, I couldn't find out any.
0
votes
1answer
856 views
How to add File\MimeType Validator in Zend Framework 2 Model Declaration
Actually I'm developing a simple file uploader.
In the ImageUploader.php file I define the getInputFilter function, all works unless I try to add a File\MimeType validator:
<?php
namespace ...
0
votes
3answers
134 views
checking for allready existing database entry in zend using validator
i have a zend form with an element $recipe_name as follows..
i want to check if a _recipename already exists using validation(Zend_Validate_DbNoRecordExists).
$recipe_name= ...
2
votes
1answer
109 views
Zend_Filter_Input with Zend_Validate_InArray-Validator which has an array as its needle
I'm using Zend_Filter_Input to filter and validate my data. For a field (gender), I am using the Zend_Validate_InArray to validate, if the value is in
array('m', 'w');
So far so good.
While ...
1
vote
1answer
495 views
How do I return a custom 'isEmpty' error message from Zend\Validator\Identical in Zend Framework 2? [duplicate]
Possible Duplicate:
zendframework 2 inputfilter customize default error message
I'm trying to use Zend\InputFilter\InputFilter to validate the input from a registration form. I have the ...
0
votes
2answers
63 views
Custom Zend Validator
I want to create a custom validator in Zend.
for e.g. my code:
$txt_state = new Zend_Form_Element_Text('state');
$txt_state->setLabel('State');
$txt_prop = new Zend_Form_Element_Text('pin');
...
0
votes
1answer
82 views
case insensitive inArray for Zend Form elements like Zend_Form_Element_MultiCheckbox and so on
By default, some form elements (such as Zend_Form_Element_MultiCheckbox
and so on) register an InArray validator which validates against the array keys of registered options. This validator used case ...
0
votes
1answer
169 views
Update Zend form element value in validator
I have a custom Zend Validate class extending Zend_Validate_Abstract
The validator is a file validator running an external command line tool that both validates and processes the file.
If the file is ...
0
votes
1answer
118 views
Using Zend_Filter_Input to validate date
I'm using ZF 1.11 and want to validate a non-Zend_Form with Zend_Filter_Input. I've successfully set up my basic validation, but I'm trying to pre-validate the credit card expiration date before ...
3
votes
2answers
148 views
How to use identical field validation for add and edit operation in zend form?
I am a newbie to zend framework. I am developing a simple user registration application in zend. I have both add and edit functionalities in my application. I can add a new user perfectly using my ...
0
votes
1answer
64 views
Prevent Zend from translating validate message
I have a custom Zend validator. This validator will run an external program that returns an error message in printf format together with an arguments-array.
I have a message template for messages ...
-1
votes
1answer
106 views
Use Zend_Validate without Zend MVC or Zend_Form
I have this form which I have written in html without Zend_Form. I need to use Zend validate component on this form to validate all the fields. How can I do this ?
0
votes
2answers
217 views
Zend_Validate_Callback overwrite self::INVALID_VALUE message
I wrote this piece of code, which works perfectly. The only thing I don't manage to change is the default callback error message "const INVALID_VALUE = 'callbackValue';" in Zend_Validate_Callback.
...
0
votes
2answers
71 views
Zend_Validate::is - haw can I get the error message from it? [duplicate]
Possible Duplicate:
Zend_Validate::is() Static Check, get validation message work around
I need a simple check for right email address. So I use Zend_Validate::is($email, 'EmailAddress'); ...
1
vote
1answer
221 views
Zend_Validate_inArray - ErrorMessage: non empty value
We're using Zend_Filter_Input to validate a Dojo From at Backend. There is "option" Input Element where we have to verify that the submitted value is allowed.
Problem: If nothing is selected the ...
1
vote
1answer
126 views
Validation in Zend_Form depending on element/field value?
Let's imagine that we have form asking: "Are you Mr./Mrs.?"
Depending on answer value we're going to implement futher validation.
For example,
Mr > Validate favourite car model
Mrs > Validate ...
2
votes
2answers
130 views
Zend_Validator_Regex throws error: Internal error while using the pattern
Message: Internal error while using the pattern "(http://)?(www.)?(youtu)((be.com)|(.be))/.*"
$element = new Zend_Form_Element_Text($this->name);
$element->setRequired(true)
...
1
vote
2answers
517 views
Zend Currency Validation
How to validate currency values in Zend framework? Is there a default validator exists in zend framework or should I write my own one?
2
votes
1answer
271 views
Zend_Validate::is() Static Check, get validation message work around
Does anyone know of a way to get validation messages from using Zend_Validate in static scope?
Zend_Validate::is($value, $validator[0], $validator[2])
The docs say explicitly that getting the ...
3
votes
4answers
125 views
What regex pattern is the correct to allow just double types?
I have the following code with zend framework:
$descuentoElement->addValidator(new Zend_Validate_Regex(array('pattern' => '/[0-9]+(.[0-9]+)?/')));
I want to validate double type inputs like ...
1
vote
2answers
150 views
ZendFramework - Why the results of isValid always failing?
My post data is from Captcha adapter is as following:
["ffck"] => array(2) {
["id"] => string(32) "661db3996f5e60e71a60671496ec71a9"
["input"] => string(3) "dys"
}
My code is ...
1
vote
3answers
814 views
How to add required error message to my input in Zend Framework 1.11?
I have the following code snippets in my forms/video.php. But i do not know where to add the validation message for required.
$this->addElement('text','name', array(
'label'=>'Name',
...
2
votes
1answer
312 views
zend_validate_regex not happy with accented characters
so I'm using Zend_Framework and I need to validate a text and accept not only digits and normal letters, but also some guys like 'ã', 'ç' and so on...
I was confident that a simple regex validation ...
4
votes
2answers
631 views
Validating multiple optional form fields with Zend Framework
I am trying to validate Zend_Form which has several optional fields and I want at least one of them to be filled in. In my case I have mobile, home and office phone numbers and I want at least one of ...
1
vote
1answer
336 views
Zend Framework validation and/or filtering issue
I am having a problem with the filtering and validation of the form below. If the two mobile numbers are entered in national format (07777654321) the form validation fails, but if they are entered in ...
0
votes
1answer
437 views
Zend Form Element Regex Validator seems to deny value when 0
Today, I have come across a bug in my Zend Framework application. This is the case:
I have a form with an element that has a regex validator on it. When testing the form, I found out that I can not ...
0
votes
1answer
545 views
Custom Validator Issue in Zend Framework
I have form called LoginForm, which extends the RecipeForm which in turn extends Zend_Form. The RecipeFrom only returns my decorators.
When the form is submitted, I get the following error, ...
1
vote
1answer
2k views
Phone number validation using zend framwork
I am using below code to validate by phone number in my project,
$phone = new Zend_Form_Element_Text('phone', array(
'label' => $view->_('phone'),
'value' => '',
'class' ...
5
votes
1answer
727 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 ...
2
votes
2answers
172 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
707 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 ...
3
votes
1answer
275 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 ...
1
vote
1answer
115 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 ...
3
votes
2answers
538 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 ...
1
vote
2answers
434 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 ...
3
votes
2answers
2k 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 ...
0
votes
1answer
474 views
How to clear all validators of single field from Zend Form?
$form->fieldName->clearValidators();
I used clearValidators() to clear all validators of a single field of my zend form, and I wanted to clear validators when my action performs. But it ...
1
vote
2answers
758 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, ...
4
votes
2answers
837 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 ...
0
votes
2answers
544 views
Zend_Validate_GreaterThan ignores equal values
I have the next validation:
$gvGreaterThanPvValidate = new Zend_Validate_GreaterThan(array('min' => 100));
$gvGreaterThanPvValidate->setMessage('GV should be greater than PV or equal');
...
0
votes
2answers
190 views
Zend Validate set number default
Whats up?! by example, my name validate when minimun and maximun caracteres..... min 3 and max 25. i do this:
$name = new Zend_Validate_StringLength();
$name->setMin(3);
$name->setMax(25);
i have a ...
4
votes
1answer
231 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?
1
vote
2answers
227 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 );
...
4
votes
2answers
3k 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:
...
2
votes
3answers
2k 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
682 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 = ...
6
votes
1answer
2k 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');
...
1
vote
3answers
3k views
Clearing Validation Error Messages from a Zend Form Element
I have a form element for capturing email addresses. I am using Zend_Validate_EmailAddress on the element, and it generates error messages that aren't very user-friendly.
My first step was to ...
0
votes
2answers
976 views
Zend Framework input validation messages
I have the following code
$validators = array(
'name' => array('NotEmpty',
'messages' => 'A valid name is required'
),
'email'=> array(
...
