]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/feedlist.php
Don't accept non-objects before testing with "instanceof".
[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('GNUSOCIAL')) { exit(1); }
32
33 /**
34  * Widget for showing a list of feeds
35  *
36  * Typically used for Action::showExportList()
37  *
38  * @category Widget
39  * @package  StatusNet
40  * @author   Evan Prodromou <evan@status.net>
41  * @author   Sarven Capadisli <csarven@status.net>
42  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43  * @link     http://status.net/
44  *
45  * @see      Action::showExportList()
46  */
47 class FeedList extends Widget
48 {
49     var $action = null;
50
51     protected $feeds = null;
52
53     public function __construct(Action $action=null, array $feeds=array())
54     {
55         parent::__construct($action);
56         $this->action = $action;
57         $this->feeds  = $feeds;
58     }
59
60     public function show()
61     {
62         if (Event::handle('StartShowFeedLinkList', array($this->action, &$this->feeds))) {
63             if (!empty($this->feeds)) {
64                 $this->out->elementStart('div', array('id' => 'export_data',
65                                                       'class' => 'section'));
66                 // TRANS: Header for feed links (h2).
67                 $this->out->element('h2', null, _('Feeds'));
68                 $this->out->elementStart('ul', array('class' => 'xoxo'));
69
70                 foreach ($this->feeds as $feed) {
71                     $this->feedItem($feed);
72                 }
73
74                 $this->out->elementEnd('ul');
75                 $this->out->elementEnd('div');
76             }
77             Event::handle('EndShowFeedLinkList', array($this->action, &$this->feeds));
78         }
79     }
80
81     function feedItem($feed)
82     {
83         if (Event::handle('StartShowFeedLink', array($this->action, &$feed))) {
84             $classname = null;
85
86             switch ($feed->type) {
87             case Feed::RSS1:
88             case Feed::RSS2:
89                 $classname = 'rss';
90                 break;
91             case Feed::ATOM:
92                 $classname = 'atom';
93                 break;
94             case Feed::FOAF:
95                 $classname = 'foaf';
96                 break;
97             case Feed::JSON:
98                 $classname = 'json';
99                 break;
100             }
101
102             $this->out->elementStart('li');
103             $this->out->element('a', array('href' => $feed->url,
104                                            'class' => $classname,
105                                            'type' => $feed->mimeType(),
106                                            'title' => $feed->title),
107                                 $feed->typeName());
108             $this->out->elementEnd('li');
109             Event::handle('EndShowFeedLink', array($this->action, $feed));
110         }
111     }
112 }