Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

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

Title Deprecated Summary
DerivativeInspectionInterface Provides a plugin interface for providing derivative metadata inspection.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal