You are here

Broken.php in Drupal 8

File

core/modules/views/src/Plugin/views/filter/Broken.php
View source
<?php

namespace Drupal\views\Plugin\views\filter;

use Drupal\views\Plugin\views\BrokenHandlerTrait;
use Drupal\views\Plugin\views\display\DisplayPluginBase;
use Drupal\views\ViewExecutable;

/**
 * A special handler to take the place of missing or broken handlers.
 *
 * @ingroup views_filter_handlers
 *
 * @ViewsFilter("broken")
 */
class Broken extends FilterPluginBase {
  use BrokenHandlerTrait;

  /**
   * {@inheritdoc}
   */
  public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
  }

}

Classes

Namesort descending Description
Broken A special handler to take the place of missing or broken handlers.