Commit 22963036 authored by Frederic Guillot's avatar Frederic Guillot
Browse files

Change template hook names

parent 396db8de
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -8,8 +8,8 @@ class Plugin extends PluginBase
{
    public function initialize()
    {
        $this->template->hook->attach('layout:head', 'theme:layout/head');
        $this->template->hook->attach('layout:top', 'theme:layout/top');
        $this->template->setTemplateOverride('header', 'theme:layout/header');
        $this->template->hook->attach('template:layout:head', 'theme:layout/head');
        $this->template->hook->attach('template:layout:top', 'theme:layout/top');
        $this->template->setTemplateOverride('template:header', 'theme:layout/header');
    }
}