Attach inputFilter to dynamically created field elements

So far, I have linked input filters to a form in a module, in other words, I have been creating elements on a form by adding input filters to elements on the module side.

For example check this example

Right now I am creating textbox elements dynamically based on requirements like this in my form

//Form
public function addNamesTextFieldElement($names)
    {
        foreach($names as $name)
        {
            $nameTextField = new Element\Text($name->getName());
            $nameTextField->setAttribute('type', "text");
            $nameTextField->setLabel($name->getName());

            $this->add($nameTextField );
        }
    }

      

Which is best for adding / attaching input filters to such dynamically generated elements.

+3


source to share


1 answer


I probably won't use this approach, but something like this will work if you've already assigned an InputFilter to the form:



public function addNamesTextFieldElement($names)
{
    $factory     = new InputFactory();
    foreach($names as $name)
    {
        $nameTextField = new Element\Text($name->getName());
        $nameTextField->setAttribute('type', "text");
        $nameTextField->setLabel($name->getName());

        $this->add($nameTextField );

        $this->getInputFilter()->add(
            $factory->createInput(array(
                'name'     => $name->getName(),
                'required' => true,
                'filters'  => array(
                    array('name' => 'StripTags'),
                    array('name' => 'StringTrim'),
                ),
                'validators' => array(
                    array(
                        'name'    => 'StringLength',
                        'options' => array(
                            'encoding' => 'UTF-8',
                            'min'      => 1,
                            'max'      => 100,
                        ),
                    ),
                ),
            ))
        );
    }
}

      

0


source







All Articles