public function views_handler_field::init in Views (for Drupal 7) 7.3
Same name and namespace in other branches
- 6.3 handlers/views_handler_field.inc \views_handler_field::init()
- 6.2 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.
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.
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);
}