summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-08-04 13:01:06 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-08-04 13:01:06 -0400
commit9421b36498f856ca7f29c3b803b99521590d58c5 (patch)
tree22486deed915bd6068251455922c61396a133465 /lib
parent8dcb6c86ae47ed478821f0470cc1f9c58bf5a709 (diff)
add an event for head children
Diffstat (limited to 'lib')
-rw-r--r--lib/action.php19
1 files changed, 11 insertions, 8 deletions
diff --git a/lib/action.php b/lib/action.php
index a5244371a..158870fa8 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -120,14 +120,17 @@ class Action extends HTMLOutputter // lawsuit
{
// XXX: attributes (profile?)
$this->elementStart('head');
- $this->showTitle();
- $this->showShortcutIcon();
- $this->showStylesheets();
- $this->showScripts();
- $this->showOpenSearch();
- $this->showFeeds();
- $this->showDescription();
- $this->extraHead();
+ if (Event::handle('StartHeadChildren', array($this))) {
+ $this->showTitle();
+ $this->showShortcutIcon();
+ $this->showStylesheets();
+ $this->showScripts();
+ $this->showOpenSearch();
+ $this->showFeeds();
+ $this->showDescription();
+ $this->extraHead();
+ Event::handle('EndHeadChildren', array($this));
+ }
$this->elementEnd('head');
}