php-extended/php-glyphicon

A library to insert more easily glyphicons to your php templates

7.0.2 2024-04-08 19:11 UTC

README

A library to insert more easily glyphicons to your php templates

coverage build status

Installation

The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.

  • Download composer.phar from their website.
  • Then run the following command to install this library as dependency :
  • php composer.phar php-extended/php-glyphicon ^7

IMPORTANT NOTE : This library does not provide any font for the glyphicons. You must find them yourself and add them to your html pages by yourself. Bootstrap 3 provides such icons you can add to your html pages.

Basic Usage

This library is only intended to reduce typing when creating templates. In such php templates, you can use :


use PhpExtended\Glyphicon\Glyphicon as G;

echo G::EURO;	// echoes 'euro'
echo G::EURO();	// echoes '<span class="glyphicon glyphicon-euro" aria-hidden="true"></span>'

echo G::make(G::EURO);	// equivalent to G::EURO()

License

MIT (See license file).