Add Start/EndShowNoticeItem event hooks to single notice page

This commit is contained in:
Zach Copley 2010-09-28 15:56:11 -07:00
parent 3960c9ad39
commit fd779009b8
1 changed files with 8 additions and 4 deletions

View File

@ -314,10 +314,14 @@ class SingleNoticeItem extends NoticeListItem
function show() function show()
{ {
$this->showStart(); $this->showStart();
$this->showNotice(); if (Event::handle('StartShowNoticeItem', array($this))) {
$this->showNoticeAttachments(); $this->showNotice();
$this->showNoticeInfo(); $this->showNoticeAttachments();
$this->showNoticeOptions(); $this->showNoticeInfo();
$this->showNoticeOptions();
Event::handle('EndShowNoticeItem', array($this));
}
$this->showEnd(); $this->showEnd();
} }