Does exist Zend Filter similar to Zend Validator Identical?
The case I should filter input=='test'
$el->addFilter('Identical','test');
The problem that such filter not exist.
Thanks, Yosef
|
Does exist Zend Filter similar to Zend Validator Identical? The case I should filter input=='test'
The problem that such filter not exist. Thanks, Yosef
| |||||
feedback
|
|
I'm not sure how this filter should work, since it is not clear from your question. Anyway, I made some custom filter that will check if a value of input filed is equal to some $token. If they are equal than the input value will be empty string. The filter looks as follows:
To apply it to a given form element:
Off course instead of require_once it could be added to your resource autoloader, but as an example I think it is not needed right now. Edit: Forgot to mention pregReplace filter. The same what the custom filter above does could be done using pregReplace filter:
But, as I said, I'm not sure how you want your filter to work. If you provide more info maybe I could help more. | ||||
|
feedback
|
|
Your question isn't all that clear - do you want a filter which removes the word If you want to remove test from your input, you could use Zend_Filter_PregReplace
Should give you There isn't a filter which would filter identical form input if its been entered into another input I don't think. You could try to create your own input filter and perform your own logic on the input. | |||
feedback
|
|
It is not that clear what you are trying to do. If you give more explanation that would be good.
If you just want to clear the data in form elements you can use one of the following:
| |||||
|
feedback
|