Custom Zend Error message for checkboxes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T07:24:22Z http://stackoverflow.com/feeds/question/827048 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/827048/custom-zend-error-message-for-checkboxes 1 Custom Zend Error message for checkboxes jwilliams 2009-05-05T21:45:20Z 2009-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 =&gt; "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#827096 1 Answer by karim79 for Custom Zend Error message for checkboxes karim79 2009-05-05T21:56:35Z 2009-05-05T22:13:21Z <p>You can override the default message like this:</p> <pre><code>$options = array( 'missingMessage' =&gt; "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-&gt;setOptions($options); </code></pre> <p>...and finally:</p> <pre><code>if ($input-&gt;hasInvalid() || $input-&gt;hasMissing()) { $messages = $input-&gt;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#827190 0 Answer by gnarf for Custom Zend Error message for checkboxes gnarf 2009-05-05T22:26:24Z 2009-05-05T22:26:24Z <p>If you are using the <code>Zend_Form_Element_Checkbox</code>.</p> <pre><code>$form-&gt;addElement('checkbox', 'terms', array( 'label'=&gt;'Terms and Services', 'uncheckedValue'=&gt; '', 'checkedValue' =&gt; 'I Agree', 'validators' =&gt; array( array('notEmpty', true, array('messages'=&gt;array('isEmpty'=&gt;'You must agree to the terms'))) ), 'required'=&gt;true, ); </code></pre> <p>You want to make sure the unchecked value is "blank" and that the field is "required"</p>