You are here

HideablePluginInterface.php in Search API 8

File

src/Plugin/HideablePluginInterface.php
View source
<?php

namespace Drupal\search_api\Plugin;


/**
 * Defines an interface for plugins that can be hidden.
 */
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();

}

Interfaces

Namesort descending Description
HideablePluginInterface Defines an interface for plugins that can be hidden.