Drupal 8で、さまざまなリンクを持つサブメニューを持つ管理ツールバーにメニュー項目を追加したいと思います。
どうすればできますか?
次の2つの方法で管理ツールバーにアイテムを追加できます。
コンテンツとして:
UIで_/admin/structure/menu/manage/admin
_
またはコードで:
_$item = \Drupal\menu_link_content\Entity\MenuLinkContent::create([
'link' => ['uri' => 'internal:/<front>'],
'title' => 'Front Page',
'menu_name' => 'admin',
]);
$item->save();
_
または静的構成ファイル:
_system.admin:
title: Administration
route_name: system.admin
weight: 9
menu_name: admin
system.admin_content:
title: Content
description: 'Find and manage content.'
route_name: system.admin_content
parent: system.admin
weight: -10
system.admin_structure:
route_name: system.admin_structure
parent: system.admin
description: 'Administer blocks, content types, menus, etc.'
title: Structure
weight: -8
system.themes_page:
route_name: system.themes_page
title: Appearance
description: 'Select and configure themes.'
parent: system.admin
weight: -6
_
これはsystem.links.menu.ymlの始まりであり、D8でわかっている管理メニューを定義します。 mymodule.links.menu.ymlに独自のエントリを追加できます。
編集:
一番上の行にアイテムを追加するには、フックmymodule_toolbar()
を使用します。これは、ツアーモジュールの例です。
_/**
* Implements hook_toolbar().
*/
function tour_toolbar() {
$items = [];
$items['tour'] = [
'#cache' => [
'contexts' => [
'user.permissions',
],
],
];
if (!\Drupal::currentUser()->hasPermission('access tour')) {
return $items;
}
$items['tour'] += array(
'#type' => 'toolbar_item',
'tab' => array(
'#type' => 'html_tag',
'#tag' => 'button',
'#value' => t('Tour'),
'#attributes' => array(
'class' => array('toolbar-icon', 'toolbar-icon-help'),
'aria-pressed' => 'false',
),
),
'#wrapper_attributes' => array(
'class' => array('tour-toolbar-tab', 'hidden'),
'id' => 'toolbar-tab-tour',
),
'#attached' => array(
'library' => array(
'tour/tour',
),
),
);
return $items;
}
_
以前の答えからのコードをどこに置くのか疑問に思う方のために– MYMODULE.installなどで使用できます。
function MYMODULE_install(){
$item = \Drupal\menu_link_content\Entity\MenuLinkContent::create([
'link' => ['uri' => 'internal:/admin/link'],
'title' => 'Link title',
'menu_name' => 'admin',
]);
$item->save();
}