mirror of
https://github.com/a2nt/silverstripe-font-awesome.git
synced 2024-10-22 17:05:51 +02:00
Further options
This commit is contained in:
parent
18f99e0b55
commit
088ebffb50
@ -7,6 +7,10 @@ class FAInjector extends Extension
|
||||
{
|
||||
public function onBeforeInit()
|
||||
{
|
||||
if (SiteConfig::current_site_config()->UseThemeCSS) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (SiteConfig::current_site_config()->UseCDN) {
|
||||
Requirements::css("//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");
|
||||
} else {
|
||||
|
@ -6,16 +6,26 @@
|
||||
class FASettings extends DataExtension
|
||||
{
|
||||
private static $db = array(
|
||||
'UseCDN' => 'boolean(1)'
|
||||
'UseCDN' => 'boolean(1)',
|
||||
'UseThemeCSS' => 'boolean(1)',
|
||||
);
|
||||
|
||||
private static $defaults = array(
|
||||
'UseCDN' => 'No'
|
||||
'UseCDN' => 'No',
|
||||
'UseThemeCSS' => 'No',
|
||||
);
|
||||
|
||||
public function updateCMSFields(FieldList $fields)
|
||||
{
|
||||
$fields->addFieldsToTab('Root.FontAwesome', array(
|
||||
|
||||
OptionsetField::create('UseThemeCSS', 'Theme dir font-awesome.css?')
|
||||
->setDescription('You may want to use font-awesome.css from your theme directory')
|
||||
->setSource(array(
|
||||
true => 'Yes',
|
||||
false => 'No'
|
||||
)),
|
||||
|
||||
OptionsetField::create('UseCDN', 'CDN for loading frontend assets?')
|
||||
->setDescription('Depending on hosting, your viewers may or may not get better performance using a CDN')
|
||||
->setSource(array(
|
||||
|
@ -8,7 +8,7 @@ A simple form field for selecting font-awesome classes in the CMS.
|
||||
* The latest version of font-awesome
|
||||
* Easy to integrate into any project
|
||||
* Option to use CDN for loading assets (Defaults to use local)
|
||||
* Injects font-awesome.css into the frontend - so remove it from your project build
|
||||
* Injects font-awesome.css into the frontend (Can disable in settings)
|
||||
|
||||
## Installation
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user