]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/feedlist.php
define LACONICA and accept LACONICA for backwards compatibility
[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
50 class FeedList extends Widget
51 {
52     var $action = null;
53
54     function __construct($action=null)
55     {
56         parent::__construct($action);
57         $this->action = $action;
58     }
59
60     function show($feeds)
61     {
62         $this->out->elementStart('div', array('id' => 'export_data',
63                                               'class' => 'section'));
64         $this->out->element('h2', null, _('Export data'));
65         $this->out->elementStart('ul', array('class' => 'xoxo'));
66
67         foreach ($feeds as $feed) {
68             $this->feedItem($feed);
69         }
70
71         $this->out->elementEnd('ul');
72         $this->out->elementEnd('div');
73     }
74
75     function feedItem($feed)
76     {
77         $classname = null;
78
79         switch ($feed->type) {
80          case Feed::RSS1:
81          case Feed::RSS2:
82             $classname = 'rss';
83             break;
84          case Feed::ATOM:
85             $classname = 'atom';
86             break;
87          case Feed::FOAF:
88             $classname = 'foaf';
89             break;
90         }
91
92         $this->out->elementStart('li');
93         $this->out->element('a', array('href' => $feed->url,
94                                        'class' => $classname,
95                                        'type' => $feed->mimeType(),
96                                        'title' => $feed->title),
97                             $feed->typeName());
98         $this->out->elementEnd('li');
99     }
100 }