]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Poll/pollresponseform.php
Poll plugin: make the polling response form submit via AJAX and return the results.
[quix0rs-gnu-social.git] / plugins / Poll / pollresponseform.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Form for adding a new poll
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  PollPlugin
24  * @package   StatusNet
25  * @author    Brion Vibber <brion@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 to add a new poll thingy
39  *
40  * @category  PollPlugin
41  * @package   StatusNet
42  * @author    Brion Vibber <brion@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
48 class PollResponseForm extends Form
49 {
50     protected $poll;
51
52     /**
53      * Construct a new poll form
54      *
55      * @param Poll $poll
56      * @param HTMLOutputter $out         output channel
57      *
58      * @return void
59      */
60
61     function __construct(Poll $poll, HTMLOutputter $out)
62     {
63         parent::__construct($out);
64         $this->poll = $poll;
65     }
66
67     /**
68      * ID of the form
69      *
70      * @return int ID of the form
71      */
72
73     function id()
74     {
75         return 'pollresponse-form';
76     }
77
78     /**
79      * class of the form
80      *
81      * @return string class of the form
82      */
83
84     function formClass()
85     {
86         return 'form_settings ajax';
87     }
88
89     /**
90      * Action of the form
91      *
92      * @return string URL of the action
93      */
94
95     function action()
96     {
97         return common_local_url('respondpoll', array('id' => $this->poll->id));
98     }
99
100     /**
101      * Data elements of the form
102      *
103      * @return void
104      */
105
106     function formData()
107     {
108         $poll = $this->poll;
109         $out = $this->out;
110         $id = "poll-" . $poll->id;
111
112         $out->element('p', 'poll-question', $poll->question);
113         $out->elementStart('ul', 'poll-options');
114         foreach ($poll->getOptions() as $i => $opt) {
115             $out->elementStart('li');
116             $out->elementStart('label');
117             $out->element('input', array('type' => 'radio', 'name' => 'pollselection', 'value' => $i + 1), '');
118             $out->text(' ' . $opt);
119             $out->elementEnd('label');
120             $out->elementEnd('li');
121         }
122         $out->elementEnd('ul');
123     }
124
125     /**
126      * Action elements
127      *
128      * @return void
129      */
130
131     function formActions()
132     {
133         $this->out->submit('submit', _m('BUTTON', 'Submit'));
134     }
135 }