protected function WizardPluginBase::build_filters

Builds the form structure for selecting the view's filters.

By default, this adds "of type" and "tagged with" filters (when they are available).

2 calls to WizardPluginBase::build_filters()
Node::build_filters in drupal/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php
Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::build_filters().
WizardPluginBase::build_form in drupal/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php
Implements Drupal\views\Plugin\views\wizard\WizardInterface::build_form().
1 method overrides WizardPluginBase::build_filters()
Node::build_filters in drupal/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php
Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::build_filters().

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php, line 556
Definition of Drupal\views\Plugin\views\wizard\WizardPluginBase.

Class

WizardPluginBase
Provides the interface and base class for Views Wizard plugins.

Namespace

Drupal\views\Plugin\views\wizard

Code

protected function build_filters(&$form, &$form_state) {

  // Find all the fields we are allowed to filter by.
  $fields = views_fetch_fields($this->base_table, 'filter');
  $entity_info = $this->entity_info;

  // If the current base table support bundles and has more than one (like user).
  if (isset($entity_info['bundle_keys']) && isset($entity_info['bundles'])) {

    // Get all bundles and their human readable names.
    $options = array(
      'all' => t('All'),
    );
    foreach ($entity_info['bundles'] as $type => $bundle) {
      $options[$type] = $bundle['label'];
    }
    $form['displays']['show']['type'] = array(
      '#type' => 'select',
      '#title' => t('of type'),
      '#options' => $options,
    );
    $selected_bundle = static::getSelected($form_state, array(
      'show',
      'type',
    ), 'all', $form['displays']['show']['type']);
    $form['displays']['show']['type']['#default_value'] = $selected_bundle;

    // Changing this dropdown updates the entire content of $form['displays']
    // via AJAX, since each bundle might have entirely different fields
    // attached to it, etc.
    views_ui_add_ajax_trigger($form['displays']['show'], 'type', array(
      'displays',
    ));
  }
}