Download the PHP package randock/metronic5-bundle without Composer
On this page you can find all versions of the php package randock/metronic5-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package metronic5-bundle
Randock Metronic 5 Bundle
Table of contents
- Table of contents
- Requirements
- Install
- Configuration
- Symfony
- Gulp
- Webpack
- How to use the menus
- 1 -Creating the class
- Create a class that implements Randock\MetronicBundle\Menu\Item\MenuItemProviderInterface Interface.
- 2 - Adding items to the menus
- 2.1- How to add items to a menu.
- 2.2 - Giving order to the menu
- 2.3 Item custom options
- 2.4 Top menu constraint
- 2.5 Top menu divider
- 3 - Create the service
- How to use headerList:
- 1- Create the service
- 2- Create the class
Table of contents generated with markdown-toc
Requirements
To be able to use metronic we have to have yarn and gulp installed. We need to put something similar to this in the Dockerfile.
Install
Via Composer
$ composer require randock/metronic5-bundle
Add the bundle to bundles.php
Configuration
Symfony
Select the layout that we are going to use. There are two possibilities: 1 or 5.
Gulp
Minimum required version of gulp is 4.0 for version 1.0.0.
First, we have to install gulp with yarn:
There has to be a gulpfile.js that indicates where is the gulp script. We can find this file in doc/conf/files/gulp
The gulp.json file is the one that includes the js, css and images that we are going to use in the project. It also indicates the output folder for the gulp files.
We can find two sample files for the layout1 and layout5 in doc/conf/files/gulp with gulp-layout1 and gulp-layout5 names. Those are base files, We can remove or add js, css or images that are in the metronic5 bundle.
Webpack
In the webpack.config.js the output files from gulp have to be added. Ideally, they whould be included in a shared entry. You should also use .autoProvidejQuery() from encore.
An example would be:
If there are errors thrown by javascript that a thing is not defined, you should include it with .addPlugin
Example:
.addPlugin(new webpack.ProvidePlugin({
zenscroll: path.resolve(__dirname, './node_modules/zenscroll/zenscroll.js'),
})
)
How to use the menus
1 -Creating the class
Create a class that implements Randock\MetronicBundle\Menu\Item\MenuItemProviderInterface Interface.
The function that has to be implemented, will have an if inside to indicate to which menu we want to add elements. The posibles values of $typeMenu are MenuBuilder::TOP_MENU and MenuBuilder::MAIN_MENU
Example:
The code inside the if will be executed for the top_menu.
The code inside the if will be executed just for the main_menu
The code inside the if will be executed for both menus, so if we add elements, they will be added to both menus.
2 - Adding items to the menus
2.1- How to add items to a menu.
-Add an item to the menu root:
This code will add an item named ‘itemName’ to the root menu. Every item that has children should have the ‘uri’ attribute set to' javascript:;'.
This code will add an item inside the previous item ‘itemName’ making it a submenu. The new item will have a link to the route defined by ‘route_name’.
If the route needs a parameter we can add it with 'routeParameters' like in the next example:
2.2 - Giving order to the menu
To order the menu we have to add an extra parameter ‘orderNumber’ with a value. This parameter will be added with the function setExtra.
The items are sorted ascending, the lower the orderNumber, the higher/left in the menu it will appear.
The items that have no value for ‘orderNumber’ will appear after all the items that have a value.
It is highly recommended to use values with a margin between them. For example 10,20,30,40… This will be useful if we want to add some item between them.
Example: This code will add an item with an orderNumber value of 20 and then it will add a sibling item with a value of 10. As we said before, the item that we add with a lower value will be at the start of the menu.
2.3 Item custom options
The menu items have the possibility to add to them an icon and a notification.
We can use them adding extras like in the next code:
The possible values for notificationType are: {MenuItemProviderInterface::SUCCESS, MenuItemProviderInterface::WARNING, MenuItemProviderInterface::DANGER, MenuItemProviderInterface::INFO}
We also can use the option dot, that will add a dot like the next one
Code used:
The icon and dot options can't be used simultaneously
2.4 Top menu constraint
The top menu will work properly only with 1 depth items.
2.5 Top menu divider
To add a divider/blank space to the menu, we have to add a child to the root with the function
This code (when rendered in a topMenu) will produce a menu with one item, a divider and two more items:
This code will produce the next output:
3 - Create the service
Create a service with the class that has just been created and with the tags { name: metronic.menu_add_items, priority: X}.
The priority is used to determine in which order
the services will be called. The lower the number the earlier the service will be called.
Remember to set it to public
Example:
How to use headerList:
1- Create the service
1.1 - Create a service whose class implements the interface Randock\Metronic5Bundle\HeaderBuilder\HeaderList\Definition\HeaderListInterface; and tagged as name: metronic.header_dropdown_list
Example:
The priority is used to determine in which order the services will be called. The lower the number the earlier the service will be rendered. It will be rendered from left to right.
2- Create the class
Create a class that implements Randock\Metronic5Bundle\HeaderBuilder\HeaderList\Definition\HeaderListInterface
2.1 Functions of the class:
-
getType(): In this moment the only option is HeaderListInterface::NOTIFICATION, so this method should return that.
-
getItems() (Notification): Should return an array of NotificationHeaderListItem objects that can have the next attributes:
- title → text of the first line of the element of the list
- url → The url to which we will be redirected after clicking on the title
- rightText → text that will be shown at the right of the title with a special format
- badge (can be text or icon)
- text-> the text that will have the badge
- icon-> icon that will have the badge
- type-> type of the badge (different colors). Can have the values → {NotificationHeaderListItem::SUCCESS, NotificationHeaderListItem::WARNING, NotificationHeaderListItem::INFO, NotificationHeaderListItem::BRAND, NotificationHeaderListItem::METAL, NotificationHeaderListItem::LIGHT, NotificationHeaderListItem::ACCENT, NotificationHeaderListItem::FOCUS, NotificationHeaderListItem::PRIMARY }
-
linkAfterTitle-> link that will be at the right of the title. it have two need parameters:
- href-> route of the link
- text-> text of the link
- getOptions: No option is required.
Example:
-
icon: It must have the necessary classes to represent an icon.
- header:
- title: The text that will appear in the header
- subtitle: The header background color
- height: The height of the headerList displayed
- newItems: if it is defined and true, a red dot will be displayed on top of the icon
-
icon: Icon of the header list