Parameters

\Traversable $namespaces:

\Drupal\Core\Cache\CacheBackendInterface $cache_backend:

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler:

File

src/QuicktabsManager.php, line 23

Class

QuicktabsManager
Quicktabs Plugin Manager.

Namespace

Drupal\quicktabs

Code

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');
}