You are here

class FormatExportLink in Bibliography & Citation 8

Same name and namespace in other branches
  1. 2.0.x modules/bibcite_export/src/Plugin/Derivative/FormatExportLink.php \Drupal\bibcite_export\Plugin\Derivative\FormatExportLink

Provides dynamic tabs based on available formats.

Hierarchy

Expanded class hierarchy of FormatExportLink

File

modules/bibcite_export/src/Plugin/Derivative/FormatExportLink.php, line 13

Namespace

Drupal\bibcite_export\Plugin\Derivative
View source
class FormatExportLink extends DeriverBase implements ContainerDeriverInterface {

  /**
   * Bibcite format manager service.
   *
   * @var \Drupal\bibcite\Plugin\BibciteFormatManagerInterface
   */
  protected $formatManager;

  /**
   * Construct a new FormatLocalTask.
   *
   * @param \Drupal\bibcite\Plugin\BibciteFormatManagerInterface $format_manager
   *   Bibcite format manager service.
   */
  public function __construct(BibciteFormatManagerInterface $format_manager) {
    $this->formatManager = $format_manager;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, $base_plugin_id) {
    return new static($container
      ->get('plugin.manager.bibcite_format'));
  }

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    foreach ($this->formatManager
      ->getDefinitions() as $format_id => $format_definition) {
      $this->derivatives[$format_id] = $base_plugin_definition;
      $this->derivatives[$format_id]['label'] = $format_definition['label'];
      $this->derivatives[$format_id]['export_format'] = $format_id;
    }
    return $this->derivatives;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DeriverBase::$derivatives protected property List of derivative definitions. 1
DeriverBase::getDerivativeDefinition public function Gets the definition of a derivative plugin. Overrides DeriverInterface::getDerivativeDefinition
FormatExportLink::$formatManager protected property Bibcite format manager service.
FormatExportLink::create public static function Creates a new class instance. Overrides ContainerDeriverInterface::create
FormatExportLink::getDerivativeDefinitions public function Gets the definition of all derivatives of a base plugin. Overrides DeriverBase::getDerivativeDefinitions
FormatExportLink::__construct public function Construct a new FormatLocalTask.