diff options
author | Jeffery To <jeffery.to@gmail.com> | 2009-06-26 15:30:24 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2009-06-26 15:30:24 +0800 |
commit | 899aad747a466609542388f86bbd22da4360ed6d (patch) | |
tree | 55fab97917fe9f304164fb96b0f0a85a4524567d /actions/shownotice.php | |
parent | 43680ed0c2cf83448d755fa1edff42711d06a82c (diff) | |
parent | 97ee517680979bf12e82eab99ecf943712fe97c9 (diff) |
Merge branch '0.8.x' into group-rss-empty
Diffstat (limited to 'actions/shownotice.php')
-rw-r--r-- | actions/shownotice.php | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/actions/shownotice.php b/actions/shownotice.php index b0d973a99..0d89af5ac 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -209,7 +209,7 @@ class ShownoticeAction extends Action function showContent() { $this->elementStart('ol', array('class' => 'notices xoxo')); - $nli = new NoticeListItem($this->notice, $this); + $nli = new SingleNoticeItem($this->notice, $this); $nli->show(); $this->elementEnd('ol'); } @@ -264,3 +264,29 @@ class ShownoticeAction extends Action } } } + +class SingleNoticeItem extends NoticeListItem +{ + /** + * recipe function for displaying a single notice. + * + * We overload to show attachments. + * + * @return void + */ + + function show() + { + $this->showStart(); + $this->showNotice(); + $this->showNoticeAttachments(); + $this->showNoticeInfo(); + $this->showNoticeOptions(); + $this->showEnd(); + } + + function showNoticeAttachments() { + $al = new AttachmentList($this->notice, $this->out); + $al->show(); + } +} |