Same name and namespace in other branches
  1. 6.x-3.x handlers/views_handler_field.inc \views_handler_field::init()

Init the handler with necessary data.

Parameters

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

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

Overrides views_handler::init

11 calls to views_handler_field::init()
views_handler_field_accesslog_path::init in modules/statistics/views_handler_field_accesslog_path.inc
Override init function to provide generic option to link to node.
views_handler_field_boolean::init in handlers/views_handler_field_boolean.inc
Init the handler with necessary data.
views_handler_field_comment::init in modules/comment/views_handler_field_comment.inc
Override init function to provide generic option to link to comment.
views_handler_field_comment_username::init in modules/comment/views_handler_field_comment_username.inc
Override init function to add uid and homepage fields.
views_handler_field_entity::init in handlers/views_handler_field_entity.inc
Initialize the entity type.

... See full list

11 methods override views_handler_field::init()
views_handler_field_accesslog_path::init in modules/statistics/views_handler_field_accesslog_path.inc
Override init function to provide generic option to link to node.
views_handler_field_boolean::init in handlers/views_handler_field_boolean.inc
Init the handler with necessary data.
views_handler_field_comment::init in modules/comment/views_handler_field_comment.inc
Override init function to provide generic option to link to comment.
views_handler_field_comment_username::init in modules/comment/views_handler_field_comment_username.inc
Override init function to add uid and homepage fields.
views_handler_field_entity::init in handlers/views_handler_field_entity.inc
Initialize the entity type.

... See full list

File

handlers/views_handler_field.inc, line 112
Definition of views_handler_field.

Class

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

Code

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