Skip to content
DerivativeInspectionInterface.php 638 B
Newer Older
<?php

/**
 * @file
 * Contains Drupal\Component\Plugin\DerivativeInspectionInterface.
 */

namespace Drupal\Component\Plugin;

/**
 * Provides a plugin interface for providing derivative metadata inspection.
 */
interface DerivativeInspectionInterface {

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

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

}