]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/stream.php
declare config global for show_notice in streams
[quix0rs-gnu-social.git] / lib / stream.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 define('NOTICES_PER_PAGE', 20);
23
24 class StreamAction extends Action {
25
26         function handle($args) {
27                 parent::handle($args);
28         }
29
30         function show_notice($notice) {
31                 global $config;
32                 $profile = $notice->getProfile();
33                 # XXX: RDFa
34                 common_element_start('div', array('class' => 'notice',
35                                                                                   'id' => 'notice-' . $notice->id));
36                 $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
37                 common_element_start('a', array('href' => $profile->profileurl));
38                 common_element('img', array('src' => ($avatar) ? $avatar->url : $config['avatar']['default']['stream'],
39                                                                         'class' => 'avatar stream',
40                                                                         'width' => AVATAR_STREAM_SIZE,
41                                                                         'height' => AVATAR_STREAM_SIZE,
42                                                                         'alt' =>
43                                                                         ($profile->fullname) ? $profile->fullname :
44                                                                         $profile->nickname));
45                 common_element_end('a');
46                 common_element('a', array('href' => $profile->profileurl,
47                                                                   'class' => 'nickname'),
48                                            $profile->nickname);
49                 # FIXME: URL, image, video, audio
50                 common_element('span', array('class' => 'content'), $notice->content);
51                 $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
52                 common_element('a', array('class' => 'notice',
53                                                                   'href' => $noticeurl),
54                                            common_date_string($notice->created));
55                 common_element_end('div');
56         }
57 }