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
Requires
- php: ^7.1
- contao/core-bundle: ^4.4
Requires (Dev)
- contao/manager-plugin: ^2.0
- doctrine/doctrine-cache-bundle: ^1.3
- friendsofphp/php-cs-fixer: ^2.6
- leofeyer/optimize-native-functions-fixer: ^1.1
- php-http/guzzle6-adapter: ^1.1
- php-http/message-factory: ^1.0.2
- phpunit/phpunit: ^5.7.26
- symfony/phpunit-bridge: ^3.2
Conflicts
- contao/core: *
- contao/manager-plugin: <2.0 || >=3.0
Replaces
- jedolabs/fontawesome-iconpicker-bundle: 1.1.0
- jedostyle/fontawesome-iconpicker-bundle: 1.1.0
This package is auto-updated.
Last update: 2024-10-29 05:16:56 UTC
README
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
- Installation Guide (EN): INSTALLATION_EN.md
- Installationsanleitung (DE): INSTALLATION_DE.md
User guide (Coming Soon!)
- English: https://docs.jedo-labs.de/en/fontawesome-widget-bundle.html
- German: https://docs.jedo-labs.de/de/fontawesome-widget-bundle.html
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",
);