PHP code example of mesavolt / mdi-php

1. Go to this page and download the library: Download mesavolt/mdi-php 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/ */

    

mesavolt / mdi-php example snippets


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

<button>
     echo Mdi::mdi('account'); 

Mdi::withDefaultAttributes([
    'data-toggle' => 'tooltip',     // Add a new one
    'role' => 'img',                // Replace default `presentation` value with `img`
    'xmlns' => null,                // Remove default `xmlns` attribute
]);

use Twig\TwigFunction;

$twigEnv->addFunction(new TwigFunction('mdi', [Mdi::class, 'mdi'], ['is_safe' => ['html']]));
bash
composer