]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/shownotice.php
start openid rp integration
[quix0rs-gnu-social.git] / actions / shownotice.php
index b7a96f0ab0895b5af9087e399c35e7c7f2de022b..4b954d57ba64cc646141dba3081ebaf69ee4b594 100644 (file)
@@ -1,25 +1,27 @@
 <?php
-/* 
+/*
  * Laconica - a distributed open-source microblogging tool
  * Copyright (C) 2008, Controlez-Vous, Inc.
- * 
+ *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU Affero General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
 if (!defined('LACONICA')) { exit(1); }
 
-class ShownoticeAction extends Action {
+require_once(INSTALLDIR.'/lib/stream.php');
+
+class ShownoticeAction extends StreamAction {
 
        function handle($args) {
                parent::handle($args);
@@ -30,48 +32,24 @@ 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));
+
+               common_element_start('ul', array('id' => 'notices'));
                $this->show_notice($notice);
-       
+               common_element_end('ul');
+
                common_show_footer();
        }
-       
+
        function no_such_notice() {
                common_user_error('No such notice.');
        }
-       
-       function show_notice($notice) {
-               $profile = $notice->getProfile();
-               # XXX: RDFa
-               common_element_start('div', array('class' => 'notice'));
-               $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
-               if ($avatar) {
-                       common_element('img', array('src' => $avatar->url,
-                                                                               'class' => 'avatar profile',
-                                                                               'width' => AVATAR_PROFILE_SIZE,
-                                                                               'height' => AVATAR_PROFILE_SIZE,
-                                                                               'alt' => 
-                                                                               ($profile->fullname) ? $profile->fullname : 
-                                                                                                      $profile->nickname));
-               }
-               common_element('a', array('href' => $profile->profileurl,
-                                                                 'class' => 'nickname',
-                                                                 'title' => 
-                                                                 ($profile->fullname) ? $profile->fullname :
-                                                                 $profile->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_element_end('div');
-       }
 }