How to apply one filter function to all fields in ORM?

474 Views Asked by At

I have a Model class:

class Model_Feedback extends ORM {
    public function filters() {
        return array(
            'username' => array(
                array('trim'),
            ),
            'email' => array(
                array('trim'),
            ),
            'tel' => array(
                array('trim'),
            ),
            'text' => array(
                array('trim'),
            ),
        );
    }
}

Is there a way to trim all fields at once and not to define separate trim filter to every field?

1

There are 1 best solutions below

1
On BEST ANSWER

Yes, Kohana allows this via a wildcard as you can see in run_filter(), instead of setting a column as key, use TRUE

public function filters() {
    return array(
        TRUE => array(
            array('trim'),
        ),
    );
}