Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
264 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
113 views

ZendFramework - How to encrypt and decrypt using Zend_Filter with bin2hex and hex2bin?

I have this random "d9b3b2d69bab862a" values when i do encoding. But i can not decode it back to abcd. Any idea how to do it? Encoder/Decoder run: $tokenIs = Application_Model_Login::getEnc("abcd"); ...
3
votes
2answers
206 views

Using multiple PregReplace filters on a Zend Form element

I want to be able to add multiple PregReplace filters on a single Zend Form element. I can add one PregReplace filter using the code below: $word = new Zend_Form_Element_Text('word'); ...
3
votes
3answers
374 views

Does exist Zend Filter similar to Zend Validator Identical?

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
3
votes
1answer
425 views

Zend_Form and Zend_Filter

How to disable filtering in Zend_Form before its re-populating?
1
vote
1answer
114 views

How to generate a custom Zend filter from a regular expression

I want to realize a Zend_Filter that return the string replacing banks with underscore and remove all the characters not allowed in a regular expression. Is that possible?
1
vote
1answer
139 views

how to show real tags from a htmlspecialchars_decode?

i'm creating a cms in php using zend framework where i choose to save at some part html templates to ease redesigning of the views and all.Now to save those templates(views, sidebars) i had to use ...
1
vote
1answer
489 views

How to filter and validate user input in Zend Framework

on my website I have a comment section. I want to filter and validate the input before I store it in my database. If there are any invalid chars in the input the user gets the notice that his input is ...
1
vote
1answer
2k views

Zend form and Zend filter HtmlEntities

I have a registration form with a few fields. One of them looks like this: $first_name = new Zend_Form_Element_Text('first_name'); $first_name ->setLabel("First name") ...
0
votes
2answers
43 views

ZendFramework - How to get all the list of TLD to remove from website?

I have a long list with website address's. But i have to filter them and get only the part "abcd". In my cut/paste/algorithm i have very random format's of websites to deal, and dealing with large ...
0
votes
1answer
64 views

How to set global options to Zend Filter LocalizedToNormalized (NormalizedToLocalized)

I am using Zend Framework and LocalizedToNormalized and NormalizedToLocalized to make a localized form. The problem is in the whole application for example I want to use global options such as ...
0
votes
1answer
112 views

Zend_Filter_Input - get filtered values to Array

I try to extract all filtered fields from Zend_Filter_Input in order to add extra fields and pass it to the model to insert or update, however I getting lost with extract piece: $filters = Array( ...
0
votes
2answers
121 views

How to escape the double quotes in “guru” in zend form?

When I tried to populate data in zend form "guru" it is returning \"guru\". can any one suggest me how to escape or remove the "" from the text field and populating form data with out "" as guru ...
0
votes
2answers
269 views

Zend_Form and setElementFilters with Zend_Filter_StringTrim does not trim

PHP Code: $form = new Zend_Form(); $filters = array(new Zend_Filter_StringTrim()); $form->setElementFilters($filters); // <-- ISSUE $customerName = new Zend_Form_Element_Text('customer_name'); ...
0
votes
1answer
396 views

Zend Framework: How to filter input, turning zero to null, then validate null?

So I've determined that my validator does not get called when I filter the input value and turn zero into null. $this->addElement('select', 'State_ID', array('label' => 'State', 'multiOptions' ...
0
votes
5answers
106 views

/regexp?/ on HTML, but not in form [closed]

Possible Duplicate: RegEx match open tags except XHTML self-contained tags I need to do some regex replacement on HTML input, but I need to exclude some parts from filtering by other ...
0
votes
1answer
515 views

Zend Framework: My custom form filter is not filtering!

So I have a form that is using a custom filter (which is really just a copy of Zend_Filter_Null). When I call it directly, it works: $makeZeroNull = new My_Filter_MakeZeroNull(); $null = ...
0
votes
5answers
351 views

Inject filter into Zend_View

I wish to set some properties in MyFilter with constructor injection but it seems impossible with Zend_View::addFilter(string $filter_class_name) since it loads a new instance upon usage. MyFilter ...
0
votes
1answer
154 views

Zend_Filter_Input filtering not triggering

I'm using Zend_Filter_Input on my magic getter / setter methods to validate my input and cast fields to the type I desire. The validation portion is working great, but it's like the filters aren't ...
0
votes
1answer
674 views

How to validate multidimensional array in Zend?

I am wondering what is the best way to validate multidimensional array using Zend_Validate with Zend_FilterInput. Here is my current code: $filters = array( 'symbol' => ...