Orm

Filters

Filters in ORM work much like they used to when they were part of the Validate class in 3.0.x. However, they have been modified to match the flexible syntax of [Validation] rules in 3.1.x.

Filters run as soon as the field is set in your model and should be used to format the data before it is inserted into the Database. Filters are defined the same way you define rules, as an array returned by the ORM::filters() method, like the following:

public function filters()
{
	return array(
		// Field Filters
		// $field_name => array(mixed $callback[, array $params = array(':value')]),
		'username' => array(
			// PHP Function Callback, default implicit param of ':value'
			array('trim'),
		),
		'password' => array(
			// Callback method with object context and params
			array(array($this, 'hash_password'), array(':value', Model_User::salt())),
		),
		'created_on' => array(
			// Callback static method with params
			array('Format::date', array(':value', 'Y-m-d H:i:s')),
		),
		'other_field' => array(
			// Callback static method with implicit param of ':value'
			array('MyClass::static_method'),
			// Callback method with object context with implicit param of ':value'
			array(array($this, 'change_other_field')),
			// PHP function callback with explicit params
			array('str_replace', array('luango', 'thomas', ':value'),
			// Function as the callback (PHP 5.3+)
			array(function($value) {
				// Do something to $value and return it.
				return some_function($value);
			}),
		),

	);
}

[!!] When defining filters, you may use the parameters :value, :field, and :model to refer to the field value, field name, and the model instance respectively.

Do you want to contribute to Koseven?

We need YOUR help!

This project is open source. What does this mean? YOU can help:
  • Found a bug? Report it on Github
  • Need a feature? Add it Here
  • Want to help? Join the Forum
Go to Github