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) {
31 $profile = $notice->getProfile();
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,
42 ($profile->fullname) ? $profile->fullname :
44 common_element_end('a');
45 common_element('a', array('href' => $profile->profileurl,
46 'class' => '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');