diff options
-rw-r--r-- | app/Template/header.php | 3 | ||||
-rw-r--r-- | doc/plugin-hooks.markdown | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/app/Template/header.php b/app/Template/header.php index 4efd1996..13521ae7 100644 --- a/app/Template/header.php +++ b/app/Template/header.php @@ -97,6 +97,9 @@ <?= $this->url->link(t('Settings'), 'ConfigController', 'index') ?> </li> <?php endif ?> + + <?= $this->hook->render('template:header:dropdown') ?> + <li> <i class="fa fa-life-ring fa-fw"></i> <?= $this->url->link(t('Documentation'), 'DocumentationController', 'show') ?> diff --git a/doc/plugin-hooks.markdown b/doc/plugin-hooks.markdown index 71ae90c3..09c4e5d0 100644 --- a/doc/plugin-hooks.markdown +++ b/doc/plugin-hooks.markdown @@ -161,6 +161,7 @@ List of template hooks: | `template:dashboard:sidebar` | Sidebar on dashboard page | | `template:export:sidebar` | Sidebar on export pages | | `template:import:sidebar` | Sidebar on import pages | +| `template:header:dropdown` | Dropdown on header | | `template:layout:head` | Page layout `<head/>` tag | | `template:layout:top` | Page layout top header | | `template:layout:bottom` | Page layout footer | |