function views_object::set_definition

Same name in other branches
  1. 7.x-3.x includes/base.inc \views_object::set_definition()

Let the handler know what its full definition is.

File

includes/base.inc, line 173

Class

views_object
Basic definition for many views objects

Code

function set_definition($definition) {
    $this->definition = $definition;
    if (isset($definition['field'])) {
        $this->real_field = $definition['field'];
    }
}