1.20.x views_handler_argument_date.inc views_handler_argument_date::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_argument::init

File

modules/views/handlers/views_handler_argument_date.inc, line 29
Definition of views_handler_argument_date.

Class

views_handler_argument_date
Abstract argument handler for dates.

Code

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