PHP code example of randock / metronic5-bundle
1. Go to this page and download the library: Download randock/metronic5-bundle library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
randock / metronic5-bundle example snippets
if (MenuBuilder::TOP_MENU === $typeMenu){
//some code
}
if (MenuBuilder::MAIN_MENU === $typeMenu){
//some code
}
if (MenuBuilder::TOP_MENU === $typeMenu || MenuBuilder::MAIN_MENU === $typeMenu) {
//some code
}
$menu->addChild(‘itemName’, ['uri' => 'javascript:;']);
$menu[‘itemName’]->addChild(‘itemNameChild’, [‘route’ => ‘route_name’]);
$menu[‘itemName’]
->addChild(
‘itemNameChild’,
[
‘route’ => ‘route_name’,
'routeParameters' => ['id' => 3]
]
);
$menu['Test']
->addChild('Second Item',['uri' => 'javascript:;'])
->setExtra('orderNumber', 20);
$menu['Test']
->addChild('First Item',['uri' => 'javascript:;'])
->setExtra('orderNumber', 10);
$menu
->addChild('I am a menu item', ['uri' => 'javascript:;'])
->setExtras(
[
'icon' => 'flaticon-share',
'notification' => 5,
'notificationType' => MenuItemProviderInterface::DANGER
]
);
$menu
->addChild('Test', ['uri' => 'javascript:;']);
$menu['Test']
->addChild('Second Item', ['uri' => 'javascript:;'])
->setExtras(
[
'dot' => 'dot',
'notification' => 5,
'notificationType' => 'danger'
]
);
->setAttribute('class', 'm-nav__separator m-nav__separator--fit')
$menu
->addChild('I am a menu item', ['uri' => 'javascript:;'])
->setExtras(
[
'icon' => 'flaticon-share',
'notification' => 5,
'notificationType' => MenuItemProviderInterface::DANGER
]
);
$menu
->addChild('divider', ['uri' => 'javascript:;'])
->setAttribute('class', 'm-nav__separator m-nav__separator--fit')
->setExtra('divider', true);
$menu
->addChild('I am another menu item', ['uri' => 'javascript:;'])
->setExtras(
[
'icon' => 'flaticon-share',
'notification' => 5,
'notificationType' => MenuItemProviderInterface::INFO
]
);
$menu
->addChild('Menu Item', ['uri' => 'javascript:;'])
->setExtras(
[
'icon' => 'flaticon-share',
'notification' => 5,
'notificationType' => MenuItemProviderInterface::INFO
]
);
[
'header' => [
'title' => 'Hei! I\'m a title',
'subtitle' => 'And I am a subtitle'
],
'height' => '200',
'newItems' => true,
'icon' => 'flaticon-music-2'
];