]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/stream.php
validation in form handlers
[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                 $profile = $notice->getProfile();
32                 # XXX: RDFa
33                 common_element_start('div', array('class' => 'notice',
34                                                                                   'id' => 'notice-' . $notice->id));
35                 $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
36                 common_element_start('a', array('href' => $profile->profileurl));
37                 common_element('img', array('src' => ($avatar) ? $avatar->url : DEFAULT_STREAM_AVATAR,
38                                                                         'class' => 'avatar stream',
39                                                                         'width' => AVATAR_STREAM_SIZE,
40                                                                         'height' => AVATAR_STREAM_SIZE,
41                                                                         'alt' =>
42                                                                         ($profile->fullname) ? $profile->fullname :
43                                                                         $profile->nickname));
44                 common_element_end('a');
45                 common_element('a', array('href' => $profile->profileurl,
46                                                                   'class' => 'nickname'),
47                                            $profile->nickname);
48                 # FIXME: URL, image, video, audio
49                 common_element('span', array('class' => 'content'), $notice->content);
50                 $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
51                 common_element('a', array('class' => 'notice',
52                                                                   'href' => $noticeurl),
53                                            common_date_string($notice->created));
54                 common_element_end('div');
55         }
56 }