]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/feedlist.php
Misses this file to merge. I like the comments.
[quix0rs-gnu-social.git] / lib / feedlist.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Widget for showing a list of feeds
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Widget
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @author    Sarven Capadisli <csarven@status.net>
26  * @copyright 2008 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 /**
36  * Widget for showing a list of feeds
37  *
38  * Typically used for Action::showExportList()
39  *
40  * @category Widget
41  * @package  StatusNet
42  * @author   Evan Prodromou <evan@status.net>
43  * @author   Sarven Capadisli <csarven@status.net>
44  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45  * @link     http://status.net/
46  *
47  * @see      Action::showExportList()
48  */
49 class FeedList extends Widget
50 {
51     var $action = null;
52
53     function __construct($action=null)
54     {
55         parent::__construct($action);
56         $this->action = $action;
57     }
58
59     function show($feeds)
60     {
61         if (Event::handle('StartShowFeedLinkList', array($this->action, &$feeds))) {
62             if (!empty($feeds)) {
63                 $this->out->elementStart('div', array('id' => 'export_data',
64                                                       'class' => 'section'));
65                 // TRANS: Header for feed links (h2).
66                 $this->out->element('h2', null, _('Feeds'));
67                 $this->out->elementStart('ul', array('class' => 'xoxo'));
68
69                 foreach ($feeds as $feed) {
70                     $this->feedItem($feed);
71                 }
72
73                 $this->out->elementEnd('ul');
74                 $this->out->elementEnd('div');
75             }
76             Event::handle('EndShowFeedLinkList', array($this->action, &$feeds));
77         }
78     }
79
80     function feedItem($feed)
81     {
82         if (Event::handle('StartShowFeedLink', array($this->action, &$feed))) {
83             $classname = null;
84
85             switch ($feed->type) {
86             case Feed::RSS1:
87             case Feed::RSS2:
88                 $classname = 'rss';
89                 break;
90             case Feed::ATOM:
91                 $classname = 'atom';
92                 break;
93             case Feed::FOAF:
94                 $classname = 'foaf';
95                 break;
96             case Feed::JSON:
97                 $classname = 'json';
98                 break;
99             }
100
101             $this->out->elementStart('li');
102             $this->out->element('a', array('href' => $feed->url,
103                                            'class' => $classname,
104                                            'type' => $feed->mimeType(),
105                                            'title' => $feed->title),
106                                 $feed->typeName());
107             $this->out->elementEnd('li');
108             Event::handle('EndShowFeedLink', array($this->action, $feed));
109         }
110     }
111 }