Quicktabs Plugin Manager.
Hierarchy
- class \Drupal\quicktabs\QuicktabsManager extends \Drupal\Core\Plugin\DefaultPluginManager
Expanded class hierarchy of QuicktabsManager
1 string reference to 'QuicktabsManager'
1 service uses QuicktabsManager
Fichier
-
src/
QuicktabsManager.php, line 16
Namespace
Drupal\quicktabsView source
class QuicktabsManager extends DefaultPluginManager {
/**
* @param \Traversable $namespaces
* @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
*/
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/QuickContent', $namespaces, $module_handler, 'Drupal\\quicktabs\\QuicktabContentInterface', 'Drupal\\quicktabs\\Annotation\\QuicktabFormat');
$this->alterInfo('quicktabs_content_alter_info');
$this->setCacheBackend($cache_backend, 'quicktabs_content');
}
}