You are here

fieldable_panels_panes_handler_filter_bundle.inc in Fieldable Panels Panes (FPP) 7

Provide views handlers for fieldable panel panes.

File

plugins/views/fieldable_panels_panes_handler_filter_bundle.inc
View source
<?php

/**
 * @file
 * Provide views handlers for fieldable panel panes.
 */

/**
 * Filter by node type.
 */
class fieldable_panels_panes_handler_filter_bundle extends views_handler_filter_in_operator {

  /**
   * {@inheritdoc}
   */
  public function get_value_options() {
    if (!isset($this->value_options)) {
      $this->value_title = t('Bundles');
      $this->value_options = fieldable_panels_panes_get_bundle_labels();
    }
  }

}

Classes

Namesort descending Description
fieldable_panels_panes_handler_filter_bundle Filter by node type.