You are here

LocalTaskTest.php in Zircon Profile 8

File

core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalTaskTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\menu_test\Plugin\Derivative\LocalTaskTest.
 */
namespace Drupal\menu_test\Plugin\Derivative;

use Drupal\Component\Plugin\Derivative\DeriverBase;
class LocalTaskTest extends DeriverBase {

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    $weight = $base_plugin_definition['weight'];
    foreach (array(
      'derive1' => 'Derive 1',
      'derive2' => 'Derive 2',
    ) as $key => $title) {
      $this->derivatives[$key] = $base_plugin_definition;
      $this->derivatives[$key]['title'] = $title;
      $this->derivatives[$key]['route_parameters'] = array(
        'placeholder' => $key,
      );
      $this->derivatives[$key]['weight'] = $weight++;

      // ensure weights for testing.
    }
    return $this->derivatives;
  }

}

Classes

Namesort descending Description
LocalTaskTest