PluginAwareInterface.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\Component\PluginFile
core/lib/Drupal/Component/Plugin/PluginAwareInterface.phpView source
<?php
namespace Drupal\Component\Plugin;
/**
* Provides an interface for objects that depend on a plugin.
*/
interface PluginAwareInterface {
/**
* Sets the plugin for this object.
*
* @param \Drupal\Component\Plugin\PluginInspectionInterface $plugin
* The plugin.
*/
public function setPlugin(PluginInspectionInterface $plugin);
}
Interfaces
Name | Description |
---|---|
PluginAwareInterface | Provides an interface for objects that depend on a plugin. |