Same filename in this branch
  1. 4.x src/Plugin/Block/QuickTabsBlock.php
Same filename and directory in other branches
  1. 8.x-3.x src/Plugin/Block/QuickTabsBlock.php 1 comment
  2. 8.x-3.x src/Plugin/Derivative/QuickTabsBlock.php 1 comment

Namespace

Drupal\quicktabs\Plugin\Derivative

File

src/Plugin/Derivative/QuickTabsBlock.php

View source
<?php

namespace Drupal\quicktabs\Plugin\Derivative;

use Drupal\Component\Plugin\Derivative\DeriverBase;

/**
 * Provides block plugin definitions for quicktabs blocks.
 *
 * @see \Drupal\mymodule\Plugin\Block\QuickTabsBlock
 */
class QuickTabsBlock extends DeriverBase {
    
    /**
     * {@inheritdoc}
     */
    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);
    }

}

Classes

Title Deprecated Summary
QuickTabsBlock Provides block plugin definitions for quicktabs blocks.