mesavolt/mdi-php

Easy MDI integration for PHP 7.1+

v1.1.0 2018-08-24 14:41 UTC

This package is auto-updated.

Last update: 2024-04-08 06:14:50 UTC


README

Painlessly drive away from using the MaterialDesignIcons webfont!

Latest Stable Version Build Status Coverage Status License

Installation

Add this package to your project:

composer require mesavolt/mdi-php

Using @mdi/svg npm package

Add @mdi/svg npm package to your project:

yarn add @mdi/svg

# or, using npm
npm install @mdi/svg

Icons location will be automatically detected.

Other

If you didn't install the icons pack using one of the documentation methods above, you can globally configure the icons location. This should be done once and before the first usage of the Mdi::mdi function.

Mdi::withIconsPath(__DIR__.'/../../../node_modules/@mdi/svg/svg/');

Usage

Use it in your views:

<button>
    <?php echo Mdi::mdi('account'); ?>
    My account
</button>

The mdi function provides 4 arguments to customize its output:

  • the icon (you can provide either account, mdi-account or mdi mdi-account)
  • its class (fill-muted for instance)
  • its size (defaults to 24px)
  • some more attributes that will be added to the <svg> tag (['aria-label' => 'My account'] for instance)

Default attributes

You can add custom default attributes, or edit and remove the provided defaults.

Attribute name Default value
viewBox 0 0 24 24
xmlns http://www.w3.org/2000/svg
width Whatever size was specified (defaults to 24)
height Whatever size was specified (defaults to 24)
role presentation
Mdi::withDefaultAttributes([
    'data-toggle' => 'tooltip',     // Add a new one
    'role' => 'img',                // Replace default `presentation` value with `img`
    'xmlns' => null,                // Remove default `xmlns` attribute
]);

Plugging it to Twig

Simply register Mdi::mdi as a Twig simple function and get started!

$twigEnv->addFunction(new \Twig_SimpleFunction('mdi', [Mdi::class, 'mdi'], ['is_safe' => ['html']]));
<button>
    {{ mdi('account', 'fill-muted', 42, {'aria-label': 'My account icon'}) }}
    My account
</button>