1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
<?php
/**
* Copyright (c) Xerox, 2009. All Rights Reserved.
* Originally written by Nicolas Terray, 2009. Xerox Codendi Team.
* Copyright 2012, Franck Villaume - TrivialDev
* This file is a part of Fusionforge.
*
* Fusionforge is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Fusionforge is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Fusionforge. If not, see <http://www.gnu.org/licenses/>.
*/
require_once 'Widget_Rss.class.php';
require_once 'Widget.class.php';
/**
* Widget_RSS
*
* Allow to add RSS feed into project homepage
*
*/
class Widget_ProjectRss extends Widget_Rss {
function Widget_ProjectRss() {
$request =& HTTPRequest::instance();
$this->Widget_Rss('projectrss', $request->get('group_id'), WidgetLayoutManager::OWNER_TYPE_GROUP);
}
function canBeUsedByProject(&$project) {
return true;
}
function getDescription() {
return _("Include public rss (or atom) feeds into project homepage.");
}
}
|