TopBarItemHigh.php

Namespace

Drupal\navigation_test\Plugin\TopBarItem

File

core/modules/navigation/tests/navigation_test/src/Plugin/TopBarItem/TopBarItemHigh.php

View source
<?php

declare (strict_types=1);
namespace Drupal\navigation_test\Plugin\TopBarItem;

use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\navigation\Attribute\TopBarItem;
use Drupal\navigation\TopBarItemBase;
use Drupal\navigation\TopBarRegion;

/**
 * Provides a top bar item plugin for testing the top bar item weight.
 */
class TopBarItemHigh extends TopBarItemBase {
  
  /**
   * {@inheritdoc}
   */
  public function build() : array {
    return [
      '#markup' => '<span class="top-bar__title" data-plugin-id="test_item_high">High Weight</span>',
    ];
  }

}

Classes

Title Deprecated Summary
TopBarItemHigh Provides a top bar item plugin for testing the top bar item weight.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.