3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, Controlez-Vous, Inc.
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.
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.
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/>.
20 if (!defined('LACONICA')) { exit(1); }
22 define('NOTICES_PER_PAGE', 20);
24 class StreamAction extends Action {
26 function handle($args) {
27 parent::handle($args);
30 function show_notice($notice) {
32 $profile = $notice->getProfile();
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 : common_default_avatar(AVATAR_STREAM_SIZE),
39 'class' => 'avatar stream',
40 'width' => AVATAR_STREAM_SIZE,
41 'height' => AVATAR_STREAM_SIZE,
43 ($profile->fullname) ? $profile->fullname :
45 common_element_end('a');
46 common_element('a', array('href' => $profile->profileurl,
47 'class' => 'nickname'),
49 # FIXME: URL, image, video, audio
50 common_element_start('span', array('class' => 'content'));
51 common_raw(common_render_content($notice->content, $notice));
52 common_element_end('span');
53 $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
54 common_element('a', array('class' => 'notice',
55 'href' => $noticeurl),
56 common_date_string($notice->created));
57 common_element_end('div');