3 * StatusNet, the distributed open-source microblogging tool
7 * LICENCE: This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 * @author Brion Vibber <brion@status.net>
23 * @copyright 2010 StatusNet, Inc.
24 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
25 * @link http://status.net/
28 if (!defined('GNUSOCIAL')) { exit(1); }
30 class MirrorSettingsAction extends SettingsAction
35 * @return string Page title
40 return _m('Feed mirror settings');
44 * Instructions for use
46 * @return string Instructions for use
49 function getInstructions()
51 // TRANS: Page instructions.
52 return _m('You can mirror updates from many RSS and Atom feeds ' .
53 'into your GNU social timeline!');
57 * Show the form for OpenID management
59 * We have one form with a few different submit buttons to do different things.
63 function showContent()
65 $provider = $this->trimmed('provider');
66 if (!empty($provider) || GNUsocial::isAjax()) {
67 $this->showAddFeedForm($provider);
69 $this->elementStart('div', array('id' => 'add-mirror'));
70 $this->showAddWizard();
71 $this->elementEnd('div');
73 $mirror = new SubMirror();
74 $mirror->subscriber = $this->scoped->getID();
75 if ($mirror->find()) {
76 while ($mirror->fetch()) {
77 $this->showFeedForm($mirror);
83 function showAddWizard()
85 $form = new AddMirrorWizard($this);
89 function showFeedForm(SubMirror $mirror)
91 $profile = Profile::getByID($mirror->subscribed);
92 $form = new EditMirrorForm($this, $profile);
96 function showAddFeedForm()
98 switch ($this->arg('provider')) {
107 $form = new AddMirrorForm($this);
113 * Show the local navigation menu
115 * This is the same for all settings, so we show it here.
119 function showLocalNav()
121 $menu = new SettingsNav($this);
125 function showScripts()
127 parent::showScripts();
128 $this->script('plugins/SubMirror/js/mirrorsettings.js');
131 function showStylesheets()
133 parent::showStylesheets();
134 $this->cssLink('plugins/SubMirror/css/mirrorsettings.css');