jedolabs/contao-fontawesome-widget-bundle

This bundle adds Font Awesome icon widget functionality to contao. This makes managing icons a breeze. This allows you to create input fields that allow you to add Font Awesome icons to their articles.

1.1.0 2019-04-29 09:19 UTC

This package is auto-updated.

Last update: 2024-04-29 04:03:23 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

About

This bundle adds Font Awesome icon widget functionality to contao. This makes managing icons a breeze. This allows you to create input fields that allow you to add Font Awesome icons to their articles.

Installation

User guide (Coming Soon!)

field integration example

 $GLOBALS['TL_DCA']['tl_myExtension']['fields']['myField'] = array(
     'label' => &$GLOBALS['TL_LANG']['tl_myExtension']['myField'],
     'search' => true,
     'inputType' => 'FontAwesomeWidget',
     'eval' => array('doNotShow' => true),
     'sql' => "blob NULL",
 );