]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/lib/qnashowquestionform.php
0ac1c823775721f875b86ac9ce895ac54e9e9e21
[quix0rs-gnu-social.git] / plugins / QnA / lib / qnashowquestionform.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Form for showing / revising an answer
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   StatusNet
24  * @author    Zach Copley <zach@status.net>
25  * @copyright 2011 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR . '/lib/form.php';
35
36 /**
37  * Form for showing a question
38  *
39  * @category Form
40  * @package  StatusNet
41  * @author   Zach Copley <zach@status.net>
42  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43  * @link     http://status.net/
44  *
45  */
46 class QnashowquestionForm extends Form
47 {
48     /**
49      * The question to show
50      */
51     var $question = null;
52
53     /**
54      * Constructor
55      *
56      * @param HTMLOutputter $out      output channel
57      * @param QnA_Question  $question the question to show
58      */
59     function __construct($out = null, $question = null)
60     {
61         parent::__construct($out);
62         $this->question = $question;
63     }
64
65     /**
66      * ID of the form
67      *
68      * @return int ID of the form
69      */
70     function id()
71     {
72         return 'question-' . $this->question->id;
73     }
74
75     /**
76      * Action of the form
77      *
78      * @return string URL of the action
79      */
80     function action()
81     {
82         return common_local_url('qnaclosequestion');
83     }
84
85     /**
86      * Include a session token for CSRF protection
87      *
88      * @return void
89      */
90     function sessionToken()
91     {
92         $this->out->hidden(
93             'token',
94             common_session_token()
95         );
96     }
97
98     /**
99      * Legend of the Form
100      *
101      * @return void
102      */
103     function formLegend()
104     {
105         // TRANS: Form legend for revising the answer.
106         $this->out->element('legend', null, _m('LEGEND','Question'));
107     }
108
109     /**
110      * Data elements
111      *
112      * @return void
113      */
114     function formData()
115     {
116         $this->out->hidden(
117             'qna-question-id',
118             'question-' . $this->question->id,
119             'id'
120         );
121
122         $this->out->hidden(
123             'answer-action',
124             common_local_url(
125                 'qnanewanswer',
126                 null,
127                 array('id' => 'question-' . $this->question->id)
128             )
129         );
130
131         $this->out->raw($this->question->asHTML());
132     }
133
134     /**
135      * Action elements
136      *
137      * @return void
138      */
139     function formActions()
140     {
141         $user = common_current_user();
142         if (empty($user)) {
143             return;
144         }
145
146         if (empty($this->question->closed)) {
147             if ($user->id == $this->question->profile_id) {
148              $this->out->submit(
149                 'qna-question-close',
150                 // TRANS: Button text for closing a question.
151                 _m('BUTTON', 'Close'),
152                 'submit',
153                 'submit',
154                 // TRANS: Title for button text for closing a question.
155                 _m('Close the question to no one can answer it anymore.')
156              );
157             }
158         }
159     }
160
161     /**
162      * Class of the form.
163      *
164      * @return string the form's class
165      */
166     function formClass()
167     {
168         return 'form_question_show ajax';
169     }
170 }