]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/SubMirror/lib/addmirrorform.php
Merge branch '1.0.x' into testing
[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                        _m('Web page or feed URL:'),
61                        $this->out->trimmed('feedurl'));
62         $this->unli();
63
64         $this->li();
65         $this->out->submit('addmirror-save', _m('BUTTON','Add feed'));
66         $this->unli();
67         $this->out->elementEnd('ul');
68         $this->out->elementEnd('fieldset');
69     }
70
71     protected function doInput($id, $name, $label, $value=null, $instructions=null)
72     {
73         $this->out->element('label', array('for' => $id), $label);
74         $attrs = array('name' => $name,
75                        'type' => 'text',
76                        'id' => $id,
77                        'style' => 'width: 80%');
78         if ($value) {
79             $attrs['value'] = $value;
80         }
81         $this->out->element('input', $attrs);
82         if ($instructions) {
83             $this->out->element('p', 'form_guide', $instructions);
84         }
85     }
86
87     /**
88      * Buttons for form actions
89      *
90      * Submit and cancel buttons (or whatever)
91      * Sub-classes should overload this to show their own buttons.
92      *
93      * @return void
94      */
95     function formActions()
96     {
97     }
98
99     /**
100      * ID of the form
101      *
102      * Should be unique on the page. Sub-classes should overload this
103      * to show their own IDs.
104      *
105      * @return string ID of the form
106      */
107     function id()
108     {
109         return 'add-mirror-form';
110     }
111
112     /**
113      * Action of the form.
114      *
115      * URL to post to. Should be overloaded by subclasses to give
116      * somewhere to post to.
117      *
118      * @return string URL to post to
119      */
120     function action()
121     {
122         return common_local_url('addmirror');
123     }
124
125     /**
126      * Class of the form.
127      *
128      * @return string the form's class
129      */
130     function formClass()
131     {
132         return 'form_settings';
133     }
134 }