]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GroupPrivateMessage/groupmessageform.php
Localisation updates from http://translatewiki.net.
[quix0rs-gnu-social.git] / plugins / GroupPrivateMessage / groupmessageform.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Form for posting a group message
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  GroupPrivateMessage
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Form for posting a group message
39  *
40  * @category  GroupPrivateMessage
41  * @package   StatusNet
42  * @author    Evan Prodromou <evan@status.net>
43  * @copyright 2011 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45  * @link      http://status.net/
46  */
47 class GroupMessageForm extends Form
48 {
49     var $group;
50     var $content;
51
52     /**
53      * Constructor
54      *
55      * @param HTMLOutputter $out   Output context
56      * @param User_group    $group Group to post to
57      *
58      * @todo add a drop-down list to post to any group
59      */
60     function __construct($out, $group, $content=null)
61     {
62         parent::__construct($out);
63
64         $this->group   = $group;
65         $this->content = $content;
66     }
67
68     /**
69      * Action for the form
70      */
71     function action()
72     {
73         return common_local_url('newgroupmessage',
74                                 array('nickname' => $this->group->nickname));
75     }
76
77     /**
78      * Legend for the form
79      *
80      * @param
81      *
82      * @return
83      */
84     function formLegend()
85     {
86         $this->out->element('legend',
87                             null,
88                             // TRANS: Form legend for sending private message to group %s.
89                             sprintf(_m('Message to %s'), $this->group->nickname));
90     }
91
92     /**
93      * id for the form
94      *
95      * @param
96      *
97      * @return
98      */
99     function id()
100     {
101         return 'form_notice-group-message';
102     }
103
104     /**
105      * class for the form
106      *
107      * @param
108      *
109      * @return
110      */
111     function formClass()
112     {
113         return 'form_notice';
114     }
115
116     /**
117      * Entry data
118      *
119      * @param
120      *
121      * @return
122      */
123     function formData()
124     {
125         $this->out->element('label', array('for' => 'notice_data-text',
126                                            'id' => 'notice_data-text-label'),
127                             // TRANS: Field label for private group message to group %s.
128                             sprintf(_m('Direct message to %s'), $this->group->nickname));
129
130         $this->out->element('textarea', array('id' => 'notice_data-text',
131                                               'cols' => 35,
132                                               'rows' => 4,
133                                               'name' => 'content'),
134                             ($this->content) ? $this->content : '');
135
136         $contentLimit = Message::maxContent();
137
138         if ($contentLimit > 0) {
139             $this->out->elementStart('dl', 'form_note');
140             // TRANS: Indicator for number of chatacters still available for notice.
141             $this->out->element('dt', null, _m('Available characters'));
142             $this->out->element('dd', array('class' => 'count'),
143                                 $contentLimit);
144             $this->out->elementEnd('dl');
145         }
146     }
147
148     /**
149      * Legend for the form
150      *
151      * @param
152      *
153      * @return
154      */
155     function formActions()
156     {
157         $this->out->element('input', array('id' => 'notice_action-submit',
158                                            'class' => 'submit',
159                                            'name' => 'message_send',
160                                            'type' => 'submit',
161                                            // TRANS: Send button text for sending private group notice.
162                                            'value' => _m('Send button for sending notice', 'Send')));
163     }
164 }