1 views_handler_argument.inc views_handler_argument::construct()

Constructor

Overrides views_object::construct

File

core/modules/views/handlers/views_handler_argument.inc, line 64
@todo.

Class

views_handler_argument
Base class for arguments.

Code

function construct() {
  parent::construct();

  if (!empty($this->definition['name field'])) {
    $this->name_field = $this->definition['name field'];
  }
  if (!empty($this->definition['name table'])) {
    $this->name_table = $this->definition['name table'];
  }
}