जवाबों:
आप दो तरीके से व्यवस्थापक टूलबार में आइटम जोड़ सकते हैं:
सामग्री के रूप में:
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 की शुरुआत है , जो व्यवस्थापक मेनू को परिभाषित करता है जैसा कि हम इसे डी 8 से जानते हैं। आप 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;
}
hook_toolbar
और ए पर एक नज़र रखने के लायक है ToolbarHandler
।
उन सभी के लिए जो आश्चर्यचकित हैं कि वे पिछले उत्तर से कोड कहां डाल सकते हैं - आप इसे उदाहरण के लिए 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();
}