X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fshownotice.php;h=04dd9011112760c092f57f03ce1e91970fd7c03c;hb=0ee3b6c57fd92c6f5a44e56c5b73c6b5bf06214e;hp=b3204d0634fbbcb4634ab23cc9a189f7770f282d;hpb=67a347bafb875be60e7554f308d80d7f0a1d2747;p=quix0rs-gnu-social.git diff --git a/actions/shownotice.php b/actions/shownotice.php index b3204d0634..04dd901111 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -1,6 +1,27 @@ . + */ -class ShownoticeAction extends Action { +if (!defined('LACONICA')) { exit(1); } + +require_once(INSTALLDIR.'/lib/stream.php'); + +class ShownoticeAction extends StreamAction { function handle($args) { parent::handle($args); @@ -11,36 +32,34 @@ class ShownoticeAction extends Action { $this->no_such_notice(); } - if (!$notice->getProfile()) { + $profile = $notice->getProfile(); + + if (!$profile) { $this->no_such_notice(); } - + # Looks like we're good; show the header - - common_show_header($profile->nickname); - + + common_show_header($profile->nickname."'s status on ".common_date_string($notice->created), + NULL, $profile, + array($this, 'show_top')); + + common_element_start('ul', array('id' => 'notices')); $this->show_notice($notice); - + common_element_end('ul'); + common_show_footer(); } + + function show_top($user) { + $cur = common_current_user(); + + if ($cur && $cur->id == $user->id) { + common_notice_form(); + } + } function no_such_notice() { common_user_error('No such notice.'); } - - function show_notice($notice) { - $profile = $notice->getProfile(); - # XXX: RDFa - common_start_element('div', array('class' => 'notice')); - # FIXME: add the avatar - common_start_element('a', array('href' => $profile->profileurl, - 'class' => 'nickname'), - $profile->nickname); - # FIXME: URL, image, video, audio - common_element('span', array('class' => 'content'), - $notice->content); - common_element('span', array('class' => 'date'), - common_date_string($notice->created)); - common_end_element('div'); - } }