kalebheitzman / grav-plugin-datetools

This plugin provides date tools to twig inside of Grav CMS.
MIT License
1 stars 1 forks source link

Doesn't work with Grav 1.4.5 #8

Open lufik opened 6 years ago

lufik commented 6 years ago

The hook onTwigSiteVariables is fired after Twig template ( https://github.com/getgrav/grav/issues/1163 ).

It's enough to change the name of the hook to onTwigPageVariables and everything works like a charm:

        $this->enable([
//          'onTwigSiteVariables' => ['onTwigSiteVariables', 0]
            'onTwigPageVariables' => ['onTwigSiteVariables', 0]
        ]);