QuickTabsBlock.php in Quick Tabs 8.3
File
src/Plugin/Derivative/QuickTabsBlock.php
View source
<?php
namespace Drupal\quicktabs\Plugin\Derivative;
use Drupal\Component\Plugin\Derivative\DeriverBase;
class QuickTabsBlock extends DeriverBase {
public function getDerivativeDefinitions($base_plugin_definition) {
foreach (\Drupal::entityTypeManager()
->getStorage('quicktabs_instance')
->loadMultiple() as $machine_name => $entity) {
$this->derivatives[$machine_name] = $base_plugin_definition;
$this->derivatives[$machine_name]['admin_label'] = 'QuickTabs - ' . $entity
->label();
}
return parent::getDerivativeDefinitions($base_plugin_definition);
}
}