You are here

interface WebformPluginManagerExcludedInterface in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformPluginManagerExcludedInterface.php \Drupal\webform\Plugin\WebformPluginManagerExcludedInterface

An interface implemented by plugin managers with excluded plugin definitions.

Hierarchy

Expanded class hierarchy of WebformPluginManagerExcludedInterface

All classes that implement WebformPluginManagerExcludedInterface

File

src/Plugin/WebformPluginManagerExcludedInterface.php, line 8

Namespace

Drupal\webform\Plugin
View source
interface WebformPluginManagerExcludedInterface {

  /**
   * Remove excluded plugin definitions.
   *
   * @param array $definitions
   *   The plugin definitions to filter.
   *
   * @return array
   *   An array of plugin definitions with excluded plugins removed.
   */
  public function removeExcludeDefinitions(array $definitions);

}

Members