You are here

interface HideablePluginInterface in Search API 8

Defines an interface for plugins that can be hidden.

Hierarchy

Expanded class hierarchy of HideablePluginInterface

All classes that implement HideablePluginInterface

3 files declare their use of HideablePluginInterface
DataTypeInterface.php in src/DataType/DataTypeInterface.php
DisplayInterface.php in src/Display/DisplayInterface.php
ParseModeInterface.php in src/ParseMode/ParseModeInterface.php

File

src/Plugin/HideablePluginInterface.php, line 8

Namespace

Drupal\search_api\Plugin
View source
interface HideablePluginInterface {

  /**
   * Determines whether this plugin should be hidden in the UI.
   *
   * @return bool
   *   TRUE if this processor should be hidden from the user; FALSE otherwise.
   */
  public function isHidden();

}

Members

Namesort descending Modifiers Type Description Overrides
HideablePluginInterface::isHidden public function Determines whether this plugin should be hidden in the UI. 1