You are here

function taxonomy_entity_index_handler_argument_tid_depth::init in Taxonomy Entity Index 7

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_argument::init

File

includes/views/handlers/taxonomy_entity_index_handler_argument_tid_depth.inc, line 10
Handler to filter all entities which has a certain term with depth.

Class

taxonomy_entity_index_handler_argument_tid_depth
@file Handler to filter all entities which has a certain term with depth.

Code

function init(&$view, &$options) {
  parent::init($view, $options);
  $this->base_table_info = views_fetch_data($this->table);
}