Same filename and directory in other branches
  1. 8.9.x core/lib/Drupal/Component/Plugin/DerivativeInspectionInterface.php
  2. 9 core/lib/Drupal/Component/Plugin/DerivativeInspectionInterface.php

Namespace

Drupal\Component\Plugin

File

core/lib/Drupal/Component/Plugin/DerivativeInspectionInterface.php
View source
<?php

namespace Drupal\Component\Plugin;


/**
 * Provides a plugin interface for providing derivative metadata inspection.
 */
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();

}

Interfaces

Namesort descending Description
DerivativeInspectionInterface Provides a plugin interface for providing derivative metadata inspection.