mirror of
https://github.com/a2nt/silverstripe-font-awesome.git
synced 2024-10-22 17:05:51 +02:00
16 lines
307 B
PHP
16 lines
307 B
PHP
<?php
|
|
|
|
/**
|
|
* Class FontAwesomeControllerExtension
|
|
*/
|
|
class FontAwesomeControllerExtension extends Extension
|
|
{
|
|
/**
|
|
* Load the font-awesome css into the template
|
|
*/
|
|
public function onBeforeInit()
|
|
{
|
|
Requirements::css(FONT_AWESOME_DIR . '/css/lib/font-awesome.min.css');
|
|
}
|
|
}
|