2023-09-02 11:11:48 +00:00
|
|
|
<?php
|
|
|
|
namespace Grav\Theme;
|
|
|
|
|
|
|
|
use Grav\Common\Theme;
|
|
|
|
|
|
|
|
class FourCreative extends Theme
|
|
|
|
{
|
2023-09-02 13:33:21 +00:00
|
|
|
public static function getSubscribedEvents()
|
|
|
|
{
|
|
|
|
return ['onTwigExtensions' => ['onTwigExtensions', 0]];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function onTwigExtensions()
|
|
|
|
{
|
|
|
|
require_once __DIR__.DIRECTORY_SEPARATOR.'php'.DIRECTORY_SEPARATOR.'DirFilesExtension.php';
|
|
|
|
$this->grav['twig']->twig->addExtension(new DirFilesExtension());
|
|
|
|
}
|
2023-09-02 11:11:48 +00:00
|
|
|
}
|