class TaxonomyIndexTidDepth

Filter handler for taxonomy terms with depth.

This handler is actually part of the node table and has some restrictions, because it uses a subquery to find nodes with.

Plugin annotation


@Plugin(
  id = "taxonomy_index_tid_depth",
  module = "taxonomy"
)

Hierarchy

Expanded class hierarchy of TaxonomyIndexTidDepth

Related topics

File

drupal/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/filter/TaxonomyIndexTidDepth.php, line 25
Definition of Drupal\taxonomy\Plugin\views\filter\TaxonomyIndexTidDepth.

Namespace

Drupal\taxonomy\Plugin\views\filter
View source
class TaxonomyIndexTidDepth extends TaxonomyIndexTid {
  function operator_options($which = 'title') {
    return array(
      'or' => t('Is one of'),
    );
  }
  protected function defineOptions() {
    $options = parent::defineOptions();
    $options['depth'] = array(
      'default' => 0,
    );
    return $options;
  }
  public function buildExtraOptionsForm(&$form, &$form_state) {
    parent::buildExtraOptionsForm($form, $form_state);
    $form['depth'] = array(
      '#type' => 'weight',
      '#title' => t('Depth'),
      '#default_value' => $this->options['depth'],
      '#description' => t('The depth will match nodes tagged with terms in the hierarchy. For example, if you have the term "fruit" and a child term "apple", with a depth of 1 (or higher) then filtering for the term "fruit" will get nodes that are tagged with "apple" as well as "fruit". If negative, the reverse is true; searching for "apple" will also pick up nodes tagged with "fruit" if depth is -1 (or lower).'),
    );
  }
  public function query() {

    // If no filter values are present, then do nothing.
    if (count($this->value) == 0) {
      return;
    }
    elseif (count($this->value) == 1) {

      // Somethis $this->value is an array with a single element so convert it.
      if (is_array($this->value)) {
        $this->value = current($this->value);
      }
      $operator = '=';
    }
    else {
      $operator = 'IN';

      # " IN (" . implode(', ', array_fill(0, sizeof($this->value), '%d')) . ")";
    }

    // The normal use of ensureMyTable() here breaks Views.
    // So instead we trick the filter into using the alias of the base table.
    // See http://drupal.org/node/271833
    // If a relationship is set, we must use the alias it provides.
    if (!empty($this->relationship)) {
      $this->tableAlias = $this->relationship;
    }
    elseif (isset($this->query->table_queue[$this->view->storage
      ->get('base_table')]['alias'])) {
      $this->tableAlias = $this->query->table_queue[$this->view->storage
        ->get('base_table')]['alias'];
    }
    else {
      return;
    }

    // Now build the subqueries.
    $subquery = db_select('taxonomy_index', 'tn');
    $subquery
      ->addField('tn', 'nid');
    $where = db_or()
      ->condition('tn.tid', $this->value, $operator);
    $last = "tn";
    if ($this->options['depth'] > 0) {
      $subquery
        ->leftJoin('taxonomy_term_hierarchy', 'th', "th.tid = tn.tid");
      $last = "th";
      foreach (range(1, abs($this->options['depth'])) as $count) {
        $subquery
          ->leftJoin('taxonomy_term_hierarchy', "th{$count}", "{$last}.parent = th{$count}.tid");
        $where
          ->condition("th{$count}.tid", $this->value, $operator);
        $last = "th{$count}";
      }
    }
    elseif ($this->options['depth'] < 0) {
      foreach (range(1, abs($this->options['depth'])) as $count) {
        $subquery
          ->leftJoin('taxonomy_term_hierarchy', "th{$count}", "{$last}.tid = th{$count}.parent");
        $where
          ->condition("th{$count}.tid", $this->value, $operator);
        $last = "th{$count}";
      }
    }
    $subquery
      ->condition($where);
    $this->query
      ->add_where($this->options['group'], "{$this->tableAlias}.{$this->realField}", $subquery, 'IN');
  }

}

Members

Namesort ascending Modifiers Type Description Overrides
TaxonomyIndexTidDepth::query public function Add this filter to the query. Overrides InOperator::query
TaxonomyIndexTidDepth::operator_options function Build strings from the operators() for 'select' options Overrides InOperator::operator_options
TaxonomyIndexTidDepth::defineOptions protected function Information about options for all kinds of purposes will be held here. @code 'option_name' => array( Overrides TaxonomyIndexTid::defineOptions
TaxonomyIndexTidDepth::buildExtraOptionsForm public function Provide a form for setting options. Overrides TaxonomyIndexTid::buildExtraOptionsForm
TaxonomyIndexTid::value_validate function Validate the options form. Overrides FilterPluginBase::value_validate
TaxonomyIndexTid::value_submit function Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data. Overrides InOperator::value_submit
TaxonomyIndexTid::value_form function Options form subform for setting options. Overrides ManyToOne::value_form
TaxonomyIndexTid::validate_term_strings function Validate the user string. Since this can come from either the form or the exposed filter, this is abstracted out a bit so it can handle the multiple input sources.
TaxonomyIndexTid::validateExposed public function Validate the exposed handler form Overrides HandlerBase::validateExposed
TaxonomyIndexTid::init public function Overrides Drupal\views\Plugin\views\filter\FilterPluginBase::init(). Overrides ManyToOne::init
TaxonomyIndexTid::hasExtraOptions public function If a handler has 'extra options' it will get a little settings widget and another form called extra_options. Overrides HandlerBase::hasExtraOptions
TaxonomyIndexTid::get_value_options function Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values. Overrides InOperator::get_value_options
TaxonomyIndexTid::buildExposeForm public function Options form subform for exposed filter options. Overrides InOperator::buildExposeForm
TaxonomyIndexTid::adminSummary public function Display the filter on the administrative summary Overrides InOperator::adminSummary
TaxonomyIndexTid::acceptExposedInput public function Check to see if input from the exposed filters should change the behavior of this filter. Overrides InOperator::acceptExposedInput
TaxonomyIndexTid::$validated_exposed_input property
PluginBase::usesOptions public function Returns the usesOptions property. 8
PluginBase::unpackOptions public function Unpack options over our existing defaults, drilling down into arrays so that defaults don't get totally blown away.
PluginBase::themeFunctions public function Provide a full list of possible theme templates used by this style. 1
PluginBase::summaryTitle public function Returns the summary of the settings in the display. 6
PluginBase::setOptionDefaults protected function
PluginBase::pluginTitle public function Return the human readable name of the display.
PluginBase::globalTokenReplace public function Returns a string with any core tokens replaced.
PluginBase::globalTokenForm public function Adds elements for available core tokens to a form.
PluginBase::getPluginId public function Implements Drupal\Component\Plugin\PluginInterface::getPluginId(). Overrides PluginInspectionInterface::getPluginId
PluginBase::getDefinition public function Implements Drupal\Component\Plugin\PluginInterface::getDefinition(). Overrides PluginInspectionInterface::getDefinition
PluginBase::getAvailableGlobalTokens public function Returns an array of available token replacements.
PluginBase::destroy public function Clears a plugin. 2
PluginBase::additionalThemeFunctions public function Provide a list of additional theme functions for the theme information page
PluginBase::$view public property The top object of a view. 1
PluginBase::$usesOptions protected property Denotes whether the plugin has an additional options form. 8
PluginBase::$plugin_id protected property The plugin_id.
PluginBase::$options public property Options for this plugin will be held here.
PluginBase::$displayHandler public property The display object this plugin is for.
PluginBase::$discovery protected property The discovery object.
PluginBase::$definition public property Plugins's definition
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
ManyToOne::op_helper function
ManyToOne::operators function This kind of construct makes it relatively easy for a child class to add or remove functionality by overriding this function and adding/removing items from this array. Overrides InOperator::operators 1
ManyToOne::ensureMyTable public function Override ensureMyTable so we can control how this joins in. The operator actually has influence over joining. Overrides HandlerBase::ensureMyTable
ManyToOne::$value_form_type property Overrides InOperator::$value_form_type
ManyToOne::$helper property Stores the Helper object which handles the many_to_one complexity.
InOperator::validate public function Validates the handler against the complete View. Overrides HandlerBase::validate
InOperator::reduce_value_options function When using exposed filters, we may be required to reduce the set.
InOperator::op_simple function
InOperator::op_empty function
InOperator::operator_values function
InOperator::defaultExposeOptions public function Provide default options for exposed filters. Overrides FilterPluginBase::defaultExposeOptions
InOperator::$value_options property Stores all operations which are available on the form.
HandlerBase::__construct public function Constructs a Handler object. Overrides PluginBase::__construct
HandlerBase::validateExtraOptionsForm public function Validate the options form.
HandlerBase::usesGroupBy public function Provides the handler some groupby. 2
HandlerBase::submitGroupByForm public function Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data. 1
HandlerBase::submitExtraOptionsForm public function Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data.
HandlerBase::submitExposeForm public function Perform any necessary changes to the form exposes prior to storage. There is no need for this function to actually store the data.
HandlerBase::submitExposed public function Submit the exposed handler form
HandlerBase::showExposeForm public function Shortcut to display the exposed options form.
HandlerBase::setRelationship public function Called just prior to query(), this lets a handler set up any relationship it needs.
HandlerBase::sanitizeValue protected function Sanitize the value for output.
HandlerBase::preQuery public function Run before the view is built. 1
HandlerBase::postExecute public function Run after the view is executed, before the result is cached.
HandlerBase::placeholder protected function Provides a unique placeholders for handlers.
HandlerBase::isExposed public function Determine if this item is 'exposed', meaning it provides form elements to let users modify the view.
HandlerBase::getTimezone public static function Figure out what timezone we're in; needed for some date manipulations.
HandlerBase::getTableJoin public static function Fetches a handler to join one table to a primary table from the data cache.
HandlerBase::getSQLFormat public function Creates cross-database SQL date formatting.
HandlerBase::getSQLDateField public function Creates cross-database SQL dates.
HandlerBase::getJoin public function Get the join object that should be used for this handler.
HandlerBase::getField public function Shortcut to get a handler's raw field value.
HandlerBase::getEntityType public function Determines the entity type used by this handler.
HandlerBase::defineExtraOptions public function Provide defaults for the handler.
HandlerBase::caseTransform protected function Transform a string by a certain method.
HandlerBase::buildGroupByForm public function Provide a form for aggregation settings. 1
HandlerBase::broken public function Determine if the handler is considered 'broken', meaning it's a a placeholder used when a handler can't be found. 6
HandlerBase::breakPhraseString public static function Breaks x,y,z and x+y+z into an array. Works for strings.
HandlerBase::breakPhrase public static function Breaks x,y,z and x+y+z into an array. Numeric only.
HandlerBase::adminLabel public function Return a string representing this handler's name in the UI. 9
HandlerBase::access public function Check whether current user has access to this handler. 6
HandlerBase::$tableAlias public property The alias of the table of this handler which is used in the query.
HandlerBase::$table public property The table this handler is attached to.
HandlerBase::$relationship public property The relationship used for this field.
HandlerBase::$realField public property The actual field in the database table, maybe different on other kind of query plugins/special handlers.
HandlerBase::$query public property Where the $query object will reside: 1
HandlerBase::$field public property With field you can override the realField if the real field is not set.
HandlerBase::$actualTable public property When a table has been moved this property is set.
HandlerBase::$actualField public property When a field has been moved this property is set.
FilterPluginBase::validateOptionsForm public function Simple validate handler Overrides HandlerBase::validateOptionsForm 1
FilterPluginBase::validateExposeForm public function Validate the options form. Overrides HandlerBase::validateExposeForm
FilterPluginBase::submitOptionsForm public function Simple submit handler Overrides HandlerBase::submitOptionsForm
FilterPluginBase::store_group_input function If set to remember exposed input in the session, store it there. This function is similar to storeExposedInput but modified to work properly when the filter is a group.
FilterPluginBase::storeExposedInput public function If set to remember exposed input in the session, store it there. Overrides HandlerBase::storeExposedInput
FilterPluginBase::show_value_form function Shortcut to display the value form.
FilterPluginBase::show_operator_form function Shortcut to display the operator form.
FilterPluginBase::show_build_group_form function Shortcut to display the exposed options form.
FilterPluginBase::show_build_group_button function Shortcut to display the build_group/hide button.
FilterPluginBase::showExposeButton public function Shortcut to display the expose/hide button. Overrides HandlerBase::showExposeButton
FilterPluginBase::prepare_filter_select_options function Sanitizes the HTML select element's options.
FilterPluginBase::operator_validate function Validate the operator form.
FilterPluginBase::operator_submit function Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data.
FilterPluginBase::operator_form function Options form subform for setting the operator. 4
FilterPluginBase::multipleExposedInput public function Returns TRUE if users can select multiple groups items of a grouped exposed filter. Overrides HandlerBase::multipleExposedInput
FilterPluginBase::isAGroup public function Returns TRUE if the exposed filter works like a grouped filter. Overrides HandlerBase::isAGroup
FilterPluginBase::group_multiple_exposed_input function Returns the options available for a grouped filter that users checkboxes as widget, and therefore has to be applied several times, one per item selected.
FilterPluginBase::group_form function Build a form containing a group of operator | values to apply as a single filter.
FilterPluginBase::exposed_translate function Make some translations to a form item to make it more suitable to exposing.
FilterPluginBase::exposedInfo public function Tell the renderer about our exposed form. This only needs to be overridden for particularly complex forms. And maybe not even then. Overrides HandlerBase::exposedInfo
FilterPluginBase::convert_exposed_input function
FilterPluginBase::can_group function Can this filter be used in OR groups? 1
FilterPluginBase::can_build_group function Determine if a filter can be converted into a group. Only exposed filters with operators available can be converted into groups.
FilterPluginBase::canExpose public function Determine if a filter can be exposed. Overrides HandlerBase::canExpose 2
FilterPluginBase::build_group_validate function Validate the build group options form. 1
FilterPluginBase::build_group_submit function Save new group items, re-enumerates and remove groups marked to delete.
FilterPluginBase::build_group_options function Provide default options for exposed filters.
FilterPluginBase::build_group_form function Build the form to let users create the group of exposed filters. This form is displayed when users click on button 'Build group'
FilterPluginBase::buildOptionsForm public function Provide the basic form which calls through to subforms. If overridden, it is best to call through to the parent, or to at least make sure all of the functions in this form are called. Overrides HandlerBase::buildOptionsForm 3
FilterPluginBase::buildExposedForm public function Render our chunk of the exposed filter form when selecting Overrides HandlerBase::buildExposedForm
FilterPluginBase::$value property Contains the actual value of the field,either configured in the views ui or entered in the exposed filters.
FilterPluginBase::$operator property Contains the operator which is used on the query.
FilterPluginBase::$no_operator property Disable the possibility to use operators. 2
FilterPluginBase::$group_info property Contains the information of the selected item in a gruped filter.
FilterPluginBase::$always_required property Disable the possibility to allow a exposed input to be optional.
FilterPluginBase::$always_multiple property Disable the possibility to force a single value. 6