1 views_handler_field.inc views_handler_field::init(&$view, &$options)

init the handler with necessary data.

Parameters

$view: The $view object this handler is attached to.

$options: The item from the database; the actual contents of this will vary based upon the type of handler.

Overrides views_handler::init

File

core/modules/views/handlers/views_handler_field.inc, line 88
@todo.

Class

views_handler_field
Base field handler that has no options and renders an unformatted field.

Code

function init(&$view, &$options) {
  parent::init($view, $options);
}