Custom Zend Error message for checkboxes - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T07:24:22Zhttp://stackoverflow.com/feeds/question/827048http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/827048/custom-zend-error-message-for-checkboxes1Custom Zend Error message for checkboxesjwilliams2009-05-05T21:45:20Z2009-08-19T20:55:54Z
<p>I have a form in a Zend-based site which has a required "Terms and Conditions" checkbox. </p>
<p>I have set a custom message which says "you must agree with terms and conditions".</p>
<p>however, because the checkbox is "presence='required'", it returns </p>
<p><b>Field 'terms' is required by rule 'terms', but the field is missing</b></p>
<p>which is this constant defined in the Zend framework:</p>
<pre><code>self::MISSING_MESSAGE => "Field '%field%' is required by rule '%rule%', but the field is missing",
</code></pre>
<p>I could edit this constant, but this would change the error reporting for all required checkboxes.</p>
<p>How can I affect the error reporting for this specific case?</p>
http://stackoverflow.com/questions/827048/custom-zend-error-message-for-checkboxes/827096#8270961Answer by karim79 for Custom Zend Error message for checkboxeskarim792009-05-05T21:56:35Z2009-05-05T22:13:21Z<p>You can override the default message like this:</p>
<pre><code>$options = array(
'missingMessage' => "Field '%field%' is required by rule '%rule%', dawg!"
);
</code></pre>
<p>And then:</p>
<pre><code>$input = new Zend_Filter_Input($filters, $validators, $myData);
</code></pre>
<p><strong>Or</strong></p>
<pre><code>$input = new Zend_Filter_Input($filters, $validators, $myData);
$input->setOptions($options);
</code></pre>
<p>...and finally:</p>
<pre><code>if ($input->hasInvalid() || $input->hasMissing()) {
$messages = $input->getMessages();
}
</code></pre>
<p>It's mentioned on the <code>Zend_Filter_Input</code> <a href="http://framework.zend.com/manual/en/zend.filter.input.html" rel="nofollow">manual</a> page.</p>
http://stackoverflow.com/questions/827048/custom-zend-error-message-for-checkboxes/827190#8271900Answer by gnarf for Custom Zend Error message for checkboxesgnarf2009-05-05T22:26:24Z2009-05-05T22:26:24Z<p>If you are using the <code>Zend_Form_Element_Checkbox</code>.</p>
<pre><code>$form->addElement('checkbox', 'terms', array(
'label'=>'Terms and Services',
'uncheckedValue'=> '',
'checkedValue' => 'I Agree',
'validators' => array(
array('notEmpty', true, array('messages'=>array('isEmpty'=>'You must agree to the terms')))
),
'required'=>true,
);
</code></pre>
<p>You want to make sure the unchecked value is "blank" and that the field is "required"</p>