]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/SubMirror/lib/addmirrorform.php
949b716dea3ffce6a1253677db8e898cc8854298
[quix0rs-gnu-social.git] / plugins / SubMirror / lib / addmirrorform.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  * PHP version 5
5  *
6  * LICENCE: This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  * @package   StatusNet
20  * @copyright 2010 StatusNet, Inc.
21  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
22  * @link      http://status.net/
23  */
24
25 if (!defined('STATUSNET') && !defined('LACONICA')) {
26     exit(1);
27 }
28
29 class AddMirrorForm extends Form
30 {
31     /**
32      * Name of the form
33      *
34      * Sub-classes should overload this with the name of their form.
35      *
36      * @return void
37      */
38     function formLegend()
39     {
40     }
41
42     /**
43      * Visible or invisible data elements
44      *
45      * Display the form fields that make up the data of the form.
46      * Sub-classes should overload this to show their data.
47      *
48      * @return void
49      */
50     function formData()
51     {
52         $this->out->hidden('provider', 'feed');
53         $this->out->elementStart('fieldset');
54
55         $this->out->elementStart('ul');
56
57         $this->li();
58         $this->doInput('addmirror-feedurl',
59                        'feedurl',
60                        // TRANS: Field label.
61                        _m('Web page or feed URL:'),
62                        $this->out->trimmed('feedurl'));
63         $this->unli();
64
65         $this->li();
66         // TRANS: Button text for adding a feed.
67         $this->out->submit('addmirror-save', _m('BUTTON','Add feed'));
68         $this->unli();
69         $this->out->elementEnd('ul');
70         $this->out->elementEnd('fieldset');
71     }
72
73     protected function doInput($id, $name, $label, $value=null, $instructions=null)
74     {
75         $this->out->element('label', array('for' => $id), $label);
76         $attrs = array('name' => $name,
77                        'type' => 'text',
78                        'id' => $id,
79                        'style' => 'width: 80%');
80         if ($value) {
81             $attrs['value'] = $value;
82         }
83         $this->out->element('input', $attrs);
84         if ($instructions) {
85             $this->out->element('p', 'form_guide', $instructions);
86         }
87     }
88
89     /**
90      * Buttons for form actions
91      *
92      * Submit and cancel buttons (or whatever)
93      * Sub-classes should overload this to show their own buttons.
94      *
95      * @return void
96      */
97     function formActions()
98     {
99     }
100
101     /**
102      * ID of the form
103      *
104      * Should be unique on the page. Sub-classes should overload this
105      * to show their own IDs.
106      *
107      * @return string ID of the form
108      */
109     function id()
110     {
111         return 'add-mirror-form';
112     }
113
114     /**
115      * Action of the form.
116      *
117      * URL to post to. Should be overloaded by subclasses to give
118      * somewhere to post to.
119      *
120      * @return string URL to post to
121      */
122     function action()
123     {
124         return common_local_url('addmirror');
125     }
126
127     /**
128      * Class of the form.
129      *
130      * @return string the form's class
131      */
132     function formClass()
133     {
134         return 'form_settings';
135     }
136 }