Skip to content

Commit

Permalink
Bumped version to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Ko committed Oct 15, 2018
1 parent 06dfa32 commit 0692e60
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.0
1.6.0
45 changes: 20 additions & 25 deletions HOOKS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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') |
+--------------------------------+------+-----------------------------------------------+

0 comments on commit 0692e60

Please sign in to comment.