]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/noticeform.php
Add an optional theme parameter to theme functions
[quix0rs-gnu-social.git] / lib / noticeform.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * Form for posting a notice
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Form
23  * @package   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @author    Sarven Capadisli <csarven@controlyourself.ca>
26  * @copyright 2009 Control Yourself, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://laconi.ca/
29  */
30
31 if (!defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/form.php';
36
37 /**
38  * Form for posting a notice
39  *
40  * Frequently-used form for posting a notice
41  *
42  * @category Form
43  * @package  Laconica
44  * @author   Evan Prodromou <evan@controlyourself.ca>
45  * @author   Sarven Capadisli <csarven@controlyourself.ca>
46  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47  * @link     http://laconi.ca/
48  *
49  * @see      HTMLOutputter
50  */
51
52 class NoticeForm extends Form
53 {
54     /**
55      * Current action, used for returning to this page.
56      */
57
58     var $action = null;
59
60     /**
61      * Pre-filled content of the form
62      */
63
64     var $content = null;
65
66     /**
67      * Constructor
68      *
69      * @param HTMLOutputter $out     output channel
70      * @param string        $action  action to return to, if any
71      * @param string        $content content to pre-fill
72      */
73
74     function __construct($out=null, $action=null, $content=null)
75     {
76         parent::__construct($out);
77
78         $this->action  = $action;
79         $this->content = $content;
80     }
81
82     /**
83      * ID of the form
84      *
85      * @return int ID of the form
86      */
87
88     function id()
89     {
90         return 'status_form';
91     }
92
93     /**
94      * Action of the form
95      *
96      * @return string URL of the action
97      */
98
99     function action()
100     {
101         return common_local_url('newnotice');
102     }
103
104     /**
105      * Data elements
106      *
107      * @return void
108      */
109
110     function formData()
111     {
112         $user = common_current_user();
113
114         $this->out->element('label', array('for' => 'status_textarea',
115                                            'id' => 'status_label'),
116                             sprintf(_('What\'s up, %s?'), $user->nickname));
117         // XXX: vary by defined max size
118         $this->out->element('span', array('id' => 'counter',
119                                           'class' => 'counter'),
120                             '140');
121         $this->out->element('textarea', array('id' => 'status_textarea',
122                                               'cols' => 60,
123                                               'rows' => 3,
124                                               'name' => 'status_textarea'),
125                             ($this->content) ? $this->content : '');
126         if ($this->action) {
127             $this->out->hidden('returnto', $this->action);
128         }
129     }
130
131     /**
132      * Action elements
133      *
134      * @return void
135      */
136
137     function formActions()
138     {
139         $this->out->element('input', array('id' => 'status_submit',
140                                            'name' => 'status_submit',
141                                            'type' => 'submit',
142                                            'value' => _('Send')));
143     }
144 }