You are here

interface ExecutableInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Executable/ExecutableInterface.php \Drupal\Core\Executable\ExecutableInterface

An interface for executable plugins.

Hierarchy

Expanded class hierarchy of ExecutableInterface

All classes that implement ExecutableInterface

Related topics

3 files declare their use of ExecutableInterface
ActionInterface.php in core/lib/Drupal/Core/Action/ActionInterface.php
Contains \Drupal\Core\Action\ActionInterface.
ConditionInterface.php in core/lib/Drupal/Core/Condition/ConditionInterface.php
Contains \Drupal\Core\Condition\ConditionInterface.
ConditionManager.php in core/lib/Drupal/Core/Condition/ConditionManager.php
Contains \Drupal\Core\Condition\ConditionManager.

File

core/lib/Drupal/Core/Executable/ExecutableInterface.php, line 15
Contains \Drupal\Core\Executable\ExecutableInterface.

Namespace

Drupal\Core\Executable
View source
interface ExecutableInterface {

  /**
   * Executes the plugin.
   */
  public function execute();

}

Members

Namesort descending Modifiers Type Description Overrides
ExecutableInterface::execute public function Executes the plugin. 25