mesavolt / mdi-php
Easy MDI integration for PHP 7.1+
Installs: 20 282
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 4
Forks: 2
Open Issues: 0
Requires
- php: >=7.1
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-08 07:46:20 UTC
README
Painlessly drive away from using the MaterialDesignIcons webfont!
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
ormdi 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.
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>