]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/lib/qnashowanswerform.php
QnA
[quix0rs-gnu-social.git] / plugins / QnA / lib / qnashowanswerform.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 / revising an answer
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 QnashowanswerForm extends Form
47 {
48     /**
49      * The answer to show
50      */
51     protected $answer   = null;
52
53     /**
54      * The question this is an answer to
55      */
56     protected $question = null;
57
58     /**
59      * Constructor
60      *
61      * @param HTMLOutputter $out    output channel
62      * @param QnA_Answer    $answer answer to revise
63      */
64     function __construct($out = null, $answer = null)
65     {
66         parent::__construct($out);
67
68         $this->answer   = $answer;
69         $this->question = $answer->getQuestion();
70     }
71
72     /**
73      * ID of the form
74      *
75      * @return int ID of the form
76      */
77     function id()
78     {
79         return 'show-' . $this->answer->id;
80     }
81
82     /**
83      * Action of the form
84      *
85      * @return string URL of the action
86      */
87     function action()
88     {
89         return common_local_url('qnareviseanswer');
90     }
91
92     /**
93      * Include a session token for CSRF protection
94      *
95      * @return void
96      */
97     function sessionToken()
98     {
99         $this->out->hidden(
100             'token',
101             common_session_token()
102         );
103     }
104
105     /**
106      * Legend of the Form
107      *
108      * @return void
109      */
110     function formLegend()
111     {
112         // TRANS: Form legend for showing the answer.
113         $this->out->element('legend', null, _('Answer'));
114     }
115
116     /**
117      * Data elements
118      *
119      * @return void
120      */
121     function formData()
122     {
123         $this->out->hidden(
124             'id',
125             'answer-' . $this->answer->id
126         );
127
128
129
130         // $this->out->raw($this->answer->asHTML());
131     }
132
133     /**
134      * Action elements
135      *
136      * @return void
137      */
138     function formActions()
139     {
140         $user = common_current_user();
141         if (empty($user)) {
142             return;
143         }
144
145         if (empty($this->question->closed)) {
146             if ($user->id == $this->question->profile_id) {
147                 if (empty($this->answer->best)) {
148                     $this->out->submit(
149                         'best',
150                         // TRANS: Button text for marking an answer as "best"
151                         _m('BUTTON', 'Best'),
152                         'submit',
153                         null,
154                         // TRANS: Title for button text marking an answer as "best"
155                         _('Mark as best answer')
156                     );
157         
158                 }
159             }
160
161             /*
162              * @fixme: Revise is disabled until we figure out the
163              *         Ostatus bits This comment is just a reminder
164              *         that the UI for this works.
165              */
166             /*
167             if ($user->id == $this->answer->profile_id) {
168                 $this->out->submit(
169                     'revise',
170                     // TRANS: Button text for revising an answer
171                     _m('BUTTON', 'Revise'),
172                     'submit',
173                     null,
174                     // TRANS: Title for button text for revising an answer
175                     _('Revise your answer')
176                 );
177             }
178              */
179         }
180     }
181
182     /**
183      * Class of the form.
184      *
185      * @return string the form's class
186      */
187     function formClass()
188     {
189         return 'form_show ajax';
190     }
191 }