sir_trevor-8.x-1.x-dev/src/Plugin/SirTrevorPluginManagerInterface.php
src/Plugin/SirTrevorPluginManagerInterface.php
<?php
namespace Drupal\sir_trevor\Plugin;
use Drupal\Component\Plugin\PluginManagerInterface;
interface SirTrevorPluginManagerInterface extends PluginManagerInterface {
/**
* @return \Drupal\sir_trevor\Plugin\SirTrevorPlugin[]
*/
public function createInstances();
/**
* @return \Drupal\sir_trevor\Plugin\SirTrevorPlugin[]
* All known SirTrevorPlugins of the type 'block'.
*/
public function getBlocks();
/**
* @return \Drupal\sir_trevor\Plugin\SirTrevorPlugin[]
*/
public function getEnabledBlocks();
}
