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