]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Poll/pollresultform.php
Remove inline reply forms on click-away if they have initial text as well as if empty...
[quix0rs-gnu-social.git] / plugins / Poll / pollresultform.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 PollResultForm 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 'pollresult-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         $counts = $poll->countResponses();
111
112         $width = 200;
113         $max = max($counts);
114         if ($max == 0) {
115             $max = 1; // quick hack :D
116         }
117
118         $out->element('p', 'poll-question', $poll->question);
119         $out->elementStart('table', 'poll-results');
120         foreach ($poll->getOptions() as $i => $opt) {
121             $w = intval($counts[$i] * $width / $max) + 1;
122
123             $out->elementStart('tr');
124
125             $out->elementStart('td');
126             $out->text($opt);
127             $out->elementEnd('td');
128
129             $out->elementStart('td');
130             $out->element('span', array('class' => 'poll-block',
131                                        'style' => "width: {$w}px"),
132                                   "\xc2\xa0"); // nbsp
133             $out->text($counts[$i]);
134             $out->elementEnd('td');
135
136             $out->elementEnd('tr');
137         }
138         $out->elementEnd('table');
139     }
140
141     /**
142      * Action elements
143      *
144      * @return void
145      */
146
147     function formActions()
148     {
149     }
150 }