]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/SubMirror/actions/mirrorsettings.php
SubMirror: switch the mirror setup tab from account settings to subscriptions/groups...
[quix0rs-gnu-social.git] / plugins / SubMirror / actions / mirrorsettings.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * PHP version 5
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  * @category  Plugins
21  * @package   StatusNet
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/
26  */
27
28 if (!defined('STATUSNET') && !defined('LACONICA')) {
29     exit(1);
30 }
31
32 class MirrorSettingsAction extends AccountSettingsAction
33 {
34     /**
35      * Title of the page
36      *
37      * @return string Page title
38      */
39     function title()
40     {
41         // TRANS: Title.
42         return _m('Feed mirror settings');
43     }
44
45     /**
46      * Instructions for use
47      *
48      * @return string Instructions for use
49      */
50
51     function getInstructions()
52     {
53         // TRANS: Instructions.
54         return _m('You can mirror updates from many RSS and Atom feeds ' .
55                   'into your StatusNet timeline!');
56     }
57
58     /**
59      * Show the form for OpenID management
60      *
61      * We have one form with a few different submit buttons to do different things.
62      *
63      * @return void
64      */
65     function showContent()
66     {
67         $user = common_current_user();
68
69         $this->showAddFeedForm();
70
71         $mirror = new SubMirror();
72         $mirror->subscriber = $user->id;
73         if ($mirror->find()) {
74             while ($mirror->fetch()) {
75                 $this->showFeedForm($mirror);
76             }
77         }
78     }
79
80     function showFeedForm($mirror)
81     {
82         $profile = Profile::staticGet('id', $mirror->subscribed);
83         if ($profile) {
84             $form = new EditMirrorForm($this, $profile);
85             $form->show();
86         }
87     }
88
89     function showAddFeedForm()
90     {
91         $form = new AddMirrorForm($this);
92         $form->show();
93     }
94
95     /**
96      * Handle a POST request
97      *
98      * Muxes to different sub-functions based on which button was pushed
99      *
100      * @return void
101      */
102     function handlePost()
103     {
104     }
105
106     function showLocalNav()
107     {
108         $nav = new SubGroupNav($this, common_current_user());
109         $nav->show();
110     }
111 }