From 0692e600223926751bff695250d3cea54bfb48f6 Mon Sep 17 00:00:00 2001 From: Knut Kohl Date: Mon, 15 Oct 2018 13:32:33 +0200 Subject: [PATCH] Bumped version to 1.6.0 --- .version | 2 +- HOOKS.md | 45 ++++++++++++++++++++------------------------- 2 files changed, 21 insertions(+), 26 deletions(-) diff --git a/.version b/.version index 3e1ad72..ce6a70b 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.5.0 \ No newline at end of file +1.6.0 \ No newline at end of file diff --git a/HOOKS.md b/HOOKS.md index 2e9504f..707944f 100644 --- a/HOOKS.md +++ b/HOOKS.md @@ -2,28 +2,23 @@ Some hooks have a **parameter by reference**. -Please refer to source code for context. - -## index.php - - Line 28 : Hook::apply('init') - Line 58 : Hook::apply('config.loaded', $config) - Line 77 : Hook::apply('before.action', $page) - Line 93 : Hook::apply('template.compile', $html) - Line 114 : Hook::apply('template.compiled', $html) - Line 121 : Hook::apply('template.compressed', $html) - Line 128 : Hook::apply('before.render') - Line 133 : Hook::apply('after.render') - -## app/mef/Snipe.php - - Line 92 : Hook::apply('snipe.loaded', $this) - Line 115 : Hook::apply('snipe.loaded', $this) - -## design/default/index.html - - Line 36 : Hook::apply('head.style') - Line 37 : Hook::apply('head.script') - Line 43 : Hook::apply('before.content') - Line 61 : Hook::apply('after.content') - Line 66 : Hook::apply('body.script') +Please refer to the source code to find out more about the context of the hook. + + +--------------------------------+------+-----------------------------------------------+ + | File | Line | Hook call | + +--------------------------------+------+-----------------------------------------------+ + | index.php | 27 | Hook::apply('init') | + | index.php | 58 | Hook::apply('config.loaded', $config) | + | index.php | 78 | Hook::apply('before.action', $page) | + | index.php | 96 | Hook::apply('template.compile', $html) | + | index.php | 117 | Hook::apply('template.compiled', $html) | + | index.php | 124 | Hook::apply('template.compressed', $html) | + | index.php | 131 | Hook::apply('before.render') | + | index.php | 136 | Hook::apply('after.render') | + | app/mef/Snipe.php | 98 | Hook::apply('snipe.loaded', $this) | + | app/mef/Snipe.php | 121 | Hook::apply('snipe.loaded', $this) | + | design/default/index.html | 36 | Hook::apply('head.style') | + | design/default/index.html | 43 | Hook::apply('before.content') | + | design/default/index.html | 62 | Hook::apply('after.content') | + | design/default/index.html | 69 | Hook::apply('body.script') | + +--------------------------------+------+-----------------------------------------------+