FISO theme
This commit is contained in:
27
fiso-theme/fiso-theme.php
Normal file
27
fiso-theme/fiso-theme.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace Grav\Theme;
|
||||
|
||||
use Grav\Common\Theme;
|
||||
|
||||
class FISO extends Theme
|
||||
{
|
||||
public static function getSubscribedEvents()
|
||||
{
|
||||
return [
|
||||
'onThemeInitialized' => ['onThemeInitialized', 0],
|
||||
'onTwigLoader' => ['onTwigLoader', 0],
|
||||
'onTwigInitialized' => ['onTwigInitialized', 0],
|
||||
];
|
||||
}
|
||||
|
||||
public function onThemeInitialized()
|
||||
{
|
||||
// When using Composer
|
||||
//require_once __DIR__ . '/vendor/autoload.php';
|
||||
}
|
||||
|
||||
public function onTwigLoader() {}
|
||||
|
||||
public function onTwigInitialized() {}
|
||||
}
|
Reference in New Issue
Block a user