You are here

interface DependentPluginDefinitionInterface in Markdown 8.2

Provides an interface for a plugin definition that has dependencies.

Hierarchy

Expanded class hierarchy of DependentPluginDefinitionInterface

All classes that implement DependentPluginDefinitionInterface

Deprecated

in markdown:8.x-2.0 and is removed from markdown:3.0.0. Use \Drupal\Core\Plugin\Definition\DependentPluginDefinitionInterface instead.

See also

https://www.drupal.org/project/markdown/issues/3103679

File

src/BcSupport/DependentPluginDefinitionInterface.php, line 20

Namespace

Drupal\markdown\BcSupport
View source
interface DependentPluginDefinitionInterface extends CoreDependentPluginDefinitionInterface {

  /**
   * Gets the config dependencies of this plugin definition.
   *
   * @return array
   *   An array of config dependencies.
   *
   * @see \Drupal\Core\Plugin\PluginDependencyTrait::calculatePluginDependencies()
   */
  public function getConfigDependencies();

  /**
   * Sets the config dependencies of this plugin definition.
   *
   * @param array $config_dependencies
   *   An array of config dependencies.
   *
   * @return $this
   */
  public function setConfigDependencies(array $config_dependencies);

}

Members