A simple form field for selecting font-awesome classes in the CMS.
Go to file
Tony Air b8559e7074
Update composer.json
2018-06-24 15:45:38 +07:00
_config Greatly simplified this module, removed a number of unnecessary features. 2015-07-28 10:50:19 +12:00
code silverstripe 4 compatibility 2017-06-09 09:14:28 +02:00
css silverstripe 4 compatibility 2017-06-09 09:14:28 +02:00
fonts * upgraded to font-awesome v4.7 2016-11-13 09:56:28 +13:00
images/screens Greatly simplified this module, removed a number of unnecessary features. 2015-07-28 10:50:19 +12:00
js * upgraded to font-awesome v4.7 2016-11-13 09:56:28 +13:00
.editorconfig Added standard .editorconfig file 2015-12-18 08:40:56 +13:00
.gitattributes Added standard .gitattributes file 2016-01-16 16:49:31 +13:00
.gitignore Initial commit. 2015-05-09 12:31:32 +12:00
.scrutinizer.yml Added standard Scrutinizer config 2016-02-17 02:12:11 +13:00
_config.php silverstripe 4 compatibility 2017-06-09 09:14:28 +02:00
composer.json Update composer.json 2018-06-24 15:45:38 +07:00
readme.md * upgraded to font-awesome v4.7 2016-11-13 09:56:28 +13:00

readme.md

Synopsis

Provides a field to easily pick font-awesome icons

Features

  • Easily pick icons to be used anywhere in the frontend
  • Can filter on icon name

Installation

Composer

Make sure you're not double loading the css/fonts with a theme.

Ideally composer will be used to install this module. composer require "moe/font-awesome:@stable"

Screen shots

Font awesome icon view

Font awesome icon

Filter view

Filter

Usage

A basic working example, and the following to any class you want the field on;

    private static $db = array(
        'Icon' => 'Varchar(255)',
    );

    public function getCMSFields()
    {
        $fields = parent::getCMSFields();

        $fields->addFieldsToTab('Root.Main', array(
           FontAwesomeField::create("Icon", "Font Awesome icon")
        ));

        return $fields;
    }

Then simple include in the template where you want the icon placed

    <i class="fa $Icon"></i>  

The controller extension should make sure you've got access to the icons so you don't need to double up the CSS file.

Want colours instead of icons?

Got you covered, checkout color-swabs!

Libraries used/modified

  • Font Awesome 4.7