You are here

function footnotes_views_handler_field::init in Footnotes 7.2

Same name and namespace in other branches
  1. 6.2 footnotes_views_handler_field.inc \footnotes_views_handler_field::init()
  2. 7.3 footnotes_views_handler_field.inc \footnotes_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_field::init

2 calls to footnotes_views_handler_field::init()
footnotes_views_handler_field_body_content::init in ./footnotes_views_handler_field_body_content.inc
Init the handler with necessary data.
footnotes_views_handler_field_body_footnotes::init in ./footnotes_views_handler_field_body_footnotes.inc
Init the handler with necessary data.
2 methods override footnotes_views_handler_field::init()
footnotes_views_handler_field_body_content::init in ./footnotes_views_handler_field_body_content.inc
Init the handler with necessary data.
footnotes_views_handler_field_body_footnotes::init in ./footnotes_views_handler_field_body_footnotes.inc
Init the handler with necessary data.

File

./footnotes_views_handler_field.inc, line 9
Views handler field.

Class

footnotes_views_handler_field
@file Views handler field.

Code

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