You are here

WebformPluginManagerExcludedInterface.php in Webform 6.x

Same filename and directory in other branches
  1. 8.5 src/Plugin/WebformPluginManagerExcludedInterface.php

File

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

namespace Drupal\webform\Plugin;


/**
 * An interface implemented by plugin managers with excluded plugin definitions.
 */
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);

}

Interfaces

Namesort descending Description
WebformPluginManagerExcludedInterface An interface implemented by plugin managers with excluded plugin definitions.