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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package metronic5-bundle

Randock Metronic 5 Bundle

Table of contents

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:

Example:


All versions of metronic5-bundle with dependencies

PHP Build Version
Package Version
Requires knplabs/knp-menu-bundle Version ^2.1|^3.0
symfony/twig-bundle Version ^4.0|^5.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package randock/metronic5-bundle contains the following files

Loading the files please wait ....