You are here

WeMegaMenuBlock.php in Drupal Mega Menu 8

File

src/Plugin/Derivative/WeMegaMenuBlock.php
View source
<?php

namespace Drupal\we_megamenu\Plugin\Derivative;

use Drupal\Component\Plugin\Derivative\DeriverBase;

/**
 * Provides blocks which belong to Drupal 8 Mega Menu.
 */
class WeMegaMenuBlock extends DeriverBase {

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    $menus = menu_ui_get_menus();
    foreach ($menus as $menu => $title) {
      $this->derivatives[$menu] = $base_plugin_definition;
      $this->derivatives[$menu]['admin_label'] = $title;
    }
    return $this->derivatives;
  }

}

Classes

Namesort descending Description
WeMegaMenuBlock Provides blocks which belong to Drupal 8 Mega Menu.