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()
{
$this->showStart();
$this->showNotice();
$this->showNoticeAttachments();
$this->showNoticeInfo();
$this->showNoticeOptions();
if (Event::handle('StartShowNoticeItem', array($this))) {
$this->showNotice();
$this->showNoticeAttachments();
$this->showNoticeInfo();
$this->showNoticeOptions();
Event::handle('EndShowNoticeItem', array($this));
}
$this->showEnd();
}