PluginAwareInterface.php in Feeds 8.3
Namespace
Drupal\feeds\PluginFile
src/Plugin/PluginAwareInterface.phpView source
<?php
namespace Drupal\feeds\Plugin;
use Drupal\feeds\Plugin\Type\FeedsPluginInterface;
/**
* Interface for objects that are aware of a plugin.
*/
interface PluginAwareInterface {
/**
* Sets the plugin for this object.
*
* @param \Drupal\Component\Plugin\FeedsPluginInterface $plugin
* The plugin.
*/
public function setPlugin(FeedsPluginInterface $plugin);
}
Interfaces
Name | Description |
---|---|
PluginAwareInterface | Interface for objects that are aware of a plugin. |