diff options
author | Gerrit Uitslag <klapinklapin@gmail.com> | 2015-08-01 02:23:07 +0200 |
---|---|---|
committer | Gerrit Uitslag <klapinklapin@gmail.com> | 2015-08-01 02:23:07 +0200 |
commit | 84dd2b1a576208ba24c01a2df14bdbed57a8ece8 (patch) | |
tree | 13ab6b88d4e8402f53760657d6713ed3e5e71713 /inc | |
parent | 66ff014ab579963895d7c103592a980c35b5845f (diff) | |
download | rpg-84dd2b1a576208ba24c01a2df14bdbed57a8ece8.tar.gz rpg-84dd2b1a576208ba24c01a2df14bdbed57a8ece8.tar.bz2 |
TEMPLATE_SITETOOLS_DISPLAY and TEMPLATE_USERTOOLS_DISPLAY
re-add PR #470 again.
Diffstat (limited to 'inc')
-rw-r--r-- | inc/template.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/inc/template.php b/inc/template.php index f918d1a04..70d93669d 100644 --- a/inc/template.php +++ b/inc/template.php @@ -1982,5 +1982,27 @@ function tpl_classes() { return join(' ', $classes); } +/** + * Create event for tools menues + * + * @author Anika Henke <anika@selfthinker.org> + * @param string $toolsname name of menu + * @param array $items + * @param string $view e.g. 'main', 'detail', ... + */ +function tpl_toolsevent($toolsname, $items, $view = 'main') { + $data = array( + 'view' => $view, + 'items' => $items + ); + + $hook = 'TEMPLATE_' . strtoupper($toolsname) . '_DISPLAY'; + $evt = new Doku_Event($hook, $data); + if($evt->advise_before()) { + foreach($evt->data['items'] as $k => $html) echo $html; + } + $evt->advise_after(); +} + //Setup VIM: ex: et ts=4 : |