You are here

interface DerivativeInspectionInterface in Service Container 7.2

Same name and namespace in other branches
  1. 7 lib/Drupal/Component/Plugin/DerivativeInspectionInterface.php \Drupal\Component\Plugin\DerivativeInspectionInterface

Provides a plugin interface for providing derivative metadata inspection.

Hierarchy

Expanded class hierarchy of DerivativeInspectionInterface

All classes that implement DerivativeInspectionInterface

File

lib/Drupal/Component/Plugin/DerivativeInspectionInterface.php, line 13
Contains \Drupal\Component\Plugin\DerivativeInspectionInterface.

Namespace

Drupal\Component\Plugin
View source
interface DerivativeInspectionInterface {

  /**
   * Gets the base_plugin_id of the plugin instance.
   *
   * @return string
   *   The base_plugin_id of the plugin instance.
   */
  public function getBaseId();

  /**
   * Gets the derivative_id of the plugin instance.
   *
   * @return string|null
   *   The derivative_id of the plugin instance NULL otherwise.
   */
  public function getDerivativeId();

}

Members

Namesort descending Modifiers Type Description Overrides
DerivativeInspectionInterface::getBaseId public function Gets the base_plugin_id of the plugin instance. 1
DerivativeInspectionInterface::getDerivativeId public function Gets the derivative_id of the plugin instance. 1