You are here

function views_handler_argument::init in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_argument.inc \views_handler_argument::init()
  2. 7.3 handlers/views_handler_argument.inc \views_handler_argument::init()

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

2 calls to views_handler_argument::init()
views_handler_argument_many_to_one::init in handlers/views_handler_argument_many_to_one.inc
init the handler with necessary data.
views_handler_argument_string::init in handlers/views_handler_argument_string.inc
init the handler with necessary data.
2 methods override views_handler_argument::init()
views_handler_argument_many_to_one::init in handlers/views_handler_argument_many_to_one.inc
init the handler with necessary data.
views_handler_argument_string::init in handlers/views_handler_argument_string.inc
init the handler with necessary data.

File

handlers/views_handler_argument.inc, line 48

Class

views_handler_argument
Base class for arguments.

Code

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