Only uses autoload to require validation classes.
[platal.git] / modules / survey / survey.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 // {{{ class Survey : root of any survey, contains all questions
23 class Survey
24 {
25 // {{{ static properties and functions, regarding survey modes and question types
26 const MODE_ALL = 0;
27 const MODE_XANON = 1;
28 const MODE_XIDENT = 2;
29 private static $longModes = array(self::MODE_ALL => "sondage ouvert à tout le monde, anonyme",
30 self::MODE_XANON => "sondage restreint aux polytechniciens, anonyme",
31 self::MODE_XIDENT => "sondage restreint aux polytechniciens, non anonyme");
32 private static $shortModes = array(self::MODE_ALL => "tout le monde, anonyme",
33 self::MODE_XANON => "polytechniciens, anonyme",
34 self::MODE_XIDENT => "polytechniciens, non anonyme");
35
36 public static function getModes($long = true) {
37 return ($long)? self::$longModes : self::$shortModes;
38 }
39
40 private static $types = array('text' => 'Texte court',
41 'textarea' => 'Texte long',
42 'num' => 'Numérique',
43 'radio' => 'Choix multiples (une réponse)',
44 'checkbox' => 'Choix multiples (plusieurs réponses)',
45 'radiotable' => 'Questions multiples à choix multiples (une réponse)',
46 'checkboxtable' => 'Questions multiples à choix mutliples (plusieurs réponses)');
47
48 public static function getTypes()
49 {
50 return self::$types;
51 }
52
53 public static function isType($t)
54 {
55 return array_key_exists($t, self::$types);
56 }
57 // }}}
58
59 // {{{ properties, constructor and basic methods
60 private $id;
61 private $title;
62 private $description;
63 private $end;
64 private $mode;
65 private $promos;
66 private $valid;
67 private $questions;
68
69 public function __construct($args, $id = -1, $valid = false, $questions = null)
70 {
71 $this->update($args);
72 $this->id = $id;
73 $this->valid = $valid;
74 $this->questions = ($questions == null)? array() : $questions;
75 }
76
77 public function update($args)
78 {
79 $this->title = $args['title'];
80 $this->description = $args['description'];
81 $this->end = $args['end'];
82 $this->mode = (isset($args['mode']))? $args['mode'] : self::MODE_ALL;
83 if ($this->mode == self::MODE_ALL) {
84 $args['promos'] = '';
85 }
86 $args['promos'] = str_replace(' ', '', $args['promos']);
87 $this->promos = ($args['promos'] == '' || preg_match('#^(\d{4}-?|(\d{4})?-\d{4})(,(\d{4}-?|(\d{4})?-\d{4}))*$#', $args['promos']))? $args['promos'] : '#';
88 }
89 // }}}
90
91 // {{{ functions to access general information
92 public function isMode($mode)
93 {
94 return ($this->mode == $mode);
95 }
96
97 public function checkPromo($promo)
98 {
99 if ($this->promos == '') {
100 return true;
101 }
102 $promos = explode(',', $this->promos);
103 foreach ($promos as $p) {
104 if ((preg_match('#^\d{4}$#', $p) && $p == $promo) ||
105 (preg_match('#^\d{4}-$#', $p) && intval(substr($p, 0, 4)) <= $promo) ||
106 (preg_match('#^-\d{4}$#', $p) && intval(substr($p, 1)) >= $promo) ||
107 (preg_match('#^\d{4}-\d{4}$#', $p) &&
108 (intval(substr($p, 0, 4)) <= $promo && intval(substr($p, 5)) >= $promo ||
109 intval(substr($p, 0, 4)) >= $promo && intval(substr($p, 5)) <= $promo ))) {
110 return true;
111 }
112 }
113 return false;
114 }
115
116 public function isValid()
117 {
118 return $this->valid;
119 }
120
121 public function isEnded()
122 {
123 return (strtotime($this->end) - time() <= 0);
124 }
125
126 public function getTitle()
127 {
128 return $this->title;
129 }
130 // }}}
131
132 // {{{ function toArray() : converts a question (or the whole survey) to array, with results if the survey is ended
133 public function toArray($i = 'all')
134 {
135 if ($i != 'all' && $i != 'root') { // if a specific question is requested, then just returns this question converted to array
136 $i = intval($i);
137 if (array_key_exists($i, $this->questions)) {
138 return $this->questions[$i]->toArray();
139 } else {
140 return null;
141 }
142 } else { // else returns the root converted to array in any case
143 $a = array('title' => $this->title,
144 'description' => $this->description,
145 'end' => $this->end,
146 'mode' => $this->mode,
147 'promos' => $this->promos,
148 'valid' => $this->valid,
149 'type' => 'root');
150 if ($this->id != -1) {
151 $a['id'] = $this->id;
152 }
153 if ($this->isEnded()) { // if the survey is ended, then adds here the number of votes
154 $sql = 'SELECT COUNT(id)
155 FROM survey_votes
156 WHERE survey_id={?};';
157 $tot = XDB::query($sql, $this->id);
158 $a['votes'] = $tot->fetchOneCell();
159 }
160 if ($i == 'all' && count($this->questions) > 0) { // if the whole survey is requested, then returns all the questions converted to array
161 $qArr = array();
162 for ($k = 0; $k < count($this->questions); $k++) {
163 $q = $this->questions[$k]->toArray();
164 $q['id'] = $k;
165 if ($this->isEnded()) { // if the survey is ended, then adds here the results of this question
166 $q['result'] = $this->questions[$k]->getResultArray($this->id, $k);
167 }
168 $qArr[$k] = $q;
169 }
170 $a['questions'] = $qArr;
171 }
172 return $a;
173 }
174 }
175 // }}}
176
177 // {{{ function toCSV() : builds a CSV file containing all the results of the survey
178 public function toCSV($sep = ',', $enc = '"', $asep='|')
179 {
180 $nbq = count($this->questions);
181 //require_once dirname(__FILE__) . '/../../classes/varstream.php';
182 VarStream::init();
183 global $csv_output;
184 $csv_output = '';
185 $csv = fopen('var://csv_output', 'w');
186 $line = ($this->isMode(self::MODE_XIDENT))? array('id', 'Nom', 'Prenom', 'Promo') : array('id');
187 $qids = array();
188 for ($qid = 0; $qid < $nbq; $qid++) {
189 $qids[$qid] = count($line); // stores the first id of a question (in case of questions with subquestions)
190 array_splice($line, count($line), 0, $this->questions[$qid]->getCSVColumns()); // the first line contains the questions
191 }
192 $nbf = count($line);
193 $users = array();
194 if ($this->isMode(self::MODE_XIDENT)) { // if the mode is non anonymous
195 $users = User::getBulkUsersWithUIDs(XDB::fetchAllAssoc('vid', 'SELECT v.id AS vid, v.uid
196 FROM survey_votes AS v
197 WHERE v.survey_id = {?}
198 ORDER BY vid ASC',
199 $this->id));
200 }
201 $sql = 'SELECT v.id AS vid, a.question_id AS qid, a.answer AS answer
202 FROM survey_votes AS v
203 INNER JOIN survey_answers AS a ON a.vote_id=v.id
204 WHERE v.survey_id={?}
205 ORDER BY vid ASC, qid ASC, answer ASC';
206 $res = XDB::iterator($sql, $this->id); // retrieves all answers from database
207 $vid = -1;
208 $vid_ = 0;
209 while (($cur = $res->next()) != null) {
210 if ($vid != $cur['vid']) { // if the vote id changes, then starts a new line
211 fputcsv($csv, $line, $sep, $enc); // stores the former line into $csv_output
212 $vid = $cur['vid'];
213 $line = array_fill(0, $nbf, ''); // creates an array full of empty string
214 $line[0] = $vid_; // the first field is a 'clean' vote id (not the one stored in database)
215 if ($this->isMode(self::MODE_XIDENT)) { // if the mode is non anonymous
216 if (array_key_exists($vid, $users)) { // and if the user data can be found
217 $line[1] = $users[$vid]->lastName(); // adds the user data (in the first fields of the line)
218 $line[2] = $users[$vid]->firstName();;
219 $line[3] = $users[$vid]->promo();
220 }
221 }
222 $vid_++;
223 }
224 $ans = $this->questions[$cur['qid']]->formatAnswer($cur['answer']); // formats the current answer
225 if (!is_null($ans)) {
226 if (is_array($ans)) {
227 $fid = $qids[$cur['qid']] + $ans['id']; // computes the field id
228 $a = $ans['answer'];
229 } else {
230 $fid = $qids[$cur['qid']];
231 $a = $ans;
232 }
233 if ($line[$fid] != '') { // if this field already contains something
234 $line[$fid] .= $asep; // then adds a separator before adding the new answer
235 }
236 $line[$fid] .= $a; // adds the current answer to the correct field
237 }
238 }
239 fputcsv($csv, $line, $sep, $enc); // stores the last line into $csv_output
240 return $csv_output;
241 }
242 // }}}
243
244 // {{{ function factory($type, $args) : builds a question according to the given type
245 public function factory($t, $args)
246 {
247 switch ($t) {
248 case 'text':
249 return new SurveyText($args);
250 case 'textarea':
251 return new SurveyTextarea($args);
252 case 'num':
253 return new SurveyNum($args);
254 case 'radio':
255 return new SurveyRadio($args);
256 case 'checkbox':
257 return new SurveyCheckbox($args);
258 case 'radiotable':
259 return new SurveyRadioTable($args);
260 case 'checkboxtable':
261 return new SurveyCheckboxTable($args);
262 default:
263 return null;
264 }
265 }
266 // }}}
267
268 // {{{ questions manipulation functions
269 public function addQuestion($i, $c)
270 {
271 $i = intval($i);
272 if ($this->valid || $i > count($this->questions)) {
273 return false;
274 } else {
275 array_splice($this->questions, $i, 0, array($c));
276 return true;
277 }
278 }
279
280 public function delQuestion($i)
281 {
282 $i = intval($i);
283 if ($this->valid || !array_key_exists($i, $this->questions)) {
284 return false;
285 } else {
286 array_splice($this->questions, $i, 1);
287 return true;
288 }
289 }
290
291 public function editQuestion($i, $a)
292 {
293 if ($i == 'root') {
294 $this->update($a);
295 } else {
296 $i = intval($i);
297 if ($this->valid ||!array_key_exists($i, $this->questions)) {
298 return false;
299 } else {
300 $this->questions[$i]->update($a);
301 }
302 }
303 return true;
304 }
305 // }}}
306
307 // {{{ function checkSyntax() : checks syntax of the questions (currently the root only) before storing the survey in database
308 private static $errorMessages = array(
309 "datepassed" => "la date de fin de sondage est déjà dépassée : vous devez préciser une date future",
310 "promoformat" => "les restrictions à certaines promotions sont mal formattées"
311 );
312
313 public function checkSyntax()
314 {
315 $rArr = array();
316 // checks that the end date given is not already passed
317 // (unless the survey has already been validated : an admin can have a validated survey expired)
318 if (!$this->valid && $this->isEnded()) {
319 $rArr[] = array('question' => 'root', 'error' => self::$errorMessages["datepassed"]);
320 }
321 if ($this->promos != '' && !preg_match('#^(\d{4}-?|(\d{4})?-\d{4})(,(\d{4}-?|(\d{4})?-\d{4}))*$#', $this->promos)) {
322 $rArr[] = array('question' => 'root', 'error' => self::$errorMessages["promoformat"]);
323 }
324 return (empty($rArr))? null : $rArr;
325 }
326 // }}}
327
328 // {{{ functions that manipulate surveys in database
329 // {{{ static function retrieveList() : gets the list of available survey (current, old and not validated surveys)
330 public static function retrieveList($type, $tpl = true)
331 {
332 switch ($type) {
333 case 'c':
334 case 'current':
335 $where = 'end > NOW()';
336 break;
337 case 'o':
338 case 'old':
339 $where = 'end <= NOW()';
340 break;
341 default:
342 return null;
343 }
344 $sql = 'SELECT id, title, end, mode
345 FROM surveys
346 WHERE '.$where.'
347 ORDER BY end DESC;';
348 if ($tpl) {
349 return XDB::iterator($sql);
350 } else {
351 return XDB::iterRow($sql);
352 }
353 }
354 // }}}
355
356 // {{{ static function retrieveSurvey() : gets a survey in database (and unserialize the survey object structure)
357 public static function retrieveSurvey($sid)
358 {
359 $sql = 'SELECT questions, title, description, end, mode, promos
360 FROM surveys
361 WHERE id={?}';
362 $res = XDB::query($sql, $sid);
363 $data = $res->fetchOneAssoc();
364 if (is_null($data) || !is_array($data)) {
365 return null;
366 }
367 $survey = new Survey($data, $sid, true, unserialize($data['questions']));
368 return $survey;
369 }
370 // }}}
371
372 // {{{ static function retrieveSurveyInfo() : gets information about a survey (title, description, end date, restrictions) but does not unserialize the survey object structure
373 public static function retrieveSurveyInfo($sid)
374 {
375 $sql = 'SELECT title, description, end, mode, promos
376 FROM surveys
377 WHERE id={?}';
378 $res = XDB::query($sql, $sid);
379 return $res->fetchOneAssoc();
380 }
381 // }}}
382
383 // {{{ static function retrieveSurveyReq() : gets a survey request to validate
384 public static function retrieveSurveyReq($id)
385 {
386 $surveyreq = Validate::get_request_by_id($id);
387 if ($surveyreq == null) {
388 return null;
389 }
390 $data = array('title' => $surveyreq->title,
391 'description' => $surveyreq->description,
392 'end' => $surveyreq->end,
393 'mode' => $surveyreq->mode,
394 'promos' => $surveyreq->promos);
395 $survey = new Survey($data, $id, false, $surveyreq->questions);
396 return $survey;
397 }
398 // }}}
399
400 // {{{ function proposeSurvey() : stores a proposition of survey in database (before validation)
401 public function proposeSurvey()
402 {
403 $surveyreq = new SurveyReq($this->title, $this->description, $this->end, $this->mode, $this->promos, $this->questions, S::user());
404 return $surveyreq->submit();
405 }
406 // }}}
407
408 // {{{ function updateSurvey() : updates a survey in database (before validation)
409 public function updateSurvey()
410 {
411 if ($this->valid) {
412 $sql = 'UPDATE surveys
413 SET questions={?},
414 title={?},
415 description={?},
416 end={?},
417 mode={?},
418 promos={?}
419 WHERE id={?};';
420 return XDB::execute($sql, serialize($this->questions), $this->title, $this->description, $this->end, $this->mode, $this->promos, $this->id);
421 } else {
422 $surveyreq = Validate::get_request_by_id($this->id);
423 if ($surveyreq == null) {
424 return false;
425 }
426 return $surveyreq->updateReq($this->title, $this->description, $this->end, $this->mode, $this->promos, $this->questions);
427 }
428 }
429 // }}}
430
431 // {{{ functions vote() and hasVoted() : handles vote to a survey
432 public function vote($uid, $args)
433 {
434 XDB::execute('INSERT INTO survey_votes
435 SET survey_id = {?}, uid = {?};', $this->id, $uid); // notes the user as having voted
436 $vid = XDB::insertId();
437 for ($i = 0; $i < count($this->questions); $i++) {
438 $ans = $this->questions[$i]->checkAnswer($args[$i]);
439 if (!is_null($ans) && is_array($ans)) {
440 foreach ($ans as $a) {
441 XDB::execute('INSERT INTO survey_answers
442 SET vote_id = {?},
443 question_id = {?},
444 answer = {?}', $vid, $i, $a);
445 }
446 }
447 }
448 }
449
450 public function hasVoted($uid)
451 {
452 $res = XDB::query('SELECT id
453 FROM survey_votes
454 WHERE survey_id = {?} AND uid = {?};', $this->id, $uid); // checks whether the user has already voted
455 return ($res->numRows() != 0);
456 }
457 // }}}
458
459 // {{{ static function deleteSurvey() : deletes a survey (and all its votes)
460 public static function deleteSurvey($sid)
461 {
462 $sql = 'DELETE s.*, v.*, a.*
463 FROM surveys AS s
464 LEFT JOIN survey_votes AS v
465 ON v.survey_id=s.id
466 LEFT JOIN survey_answers AS a
467 ON a.vote_id=v.id
468 WHERE s.id={?};';
469 return XDB::execute($sql, $sid);
470 }
471 // }}}
472
473 // {{{ static function purgeVotes() : clears all votes concerning a survey (I'm not sure whether it's really useful)
474 public static function purgeVotes($sid)
475 {
476 $sql = 'DELETE v.*, a.*
477 FROM survey_votes AS v
478 LEFT JOIN survey_answers AS a
479 ON a.vote_id=v.id
480 WHERE v.survey_id={?};';
481 return XDB::execute($sql, $sid);
482 }
483 // }}}
484
485 // }}}
486 }
487 // }}}
488
489 // {{{ abstract class SurveyQuestion
490 abstract class SurveyQuestion
491 {
492 // {{{ common properties, constructor, and basic methods
493 private $question;
494 private $comment;
495
496 public function __construct($args)
497 {
498 $this->update($args);
499 }
500
501 public function update($a)
502 {
503 $this->question = $a['question'];
504 $this->comment = $a['comment'];
505 }
506
507 abstract protected function getQuestionType();
508 // }}}
509
510 // {{{ function toArray() : converts to array
511 public function toArray()
512 {
513 return array('type' => $this->getQuestionType(), 'question' => $this->question, 'comment' => $this->comment);
514 }
515 // }}}
516
517 // {{{ function checkSyntax() : checks question elements (before storing into database), not currently needed (with new structure)
518 protected function checkSyntax()
519 {
520 return null;
521 }
522 // }}}
523
524 // {{{ function checkAnswer : returns a correct answer (or a null value if error)
525 public function checkAnswer($ans)
526 {
527 return null;
528 }
529 // }}}
530
531 // {{{ functions regarding the results of a survey
532 abstract public function getResultArray($sid, $qid);
533
534 public function formatAnswer($ans)
535 {
536 return $ans;
537 }
538
539 public function getCSVColumns()
540 {
541 return $this->question;
542 }
543 // }}}
544 }
545 // }}}
546
547 // {{{ abstract class SurveySimple and its derived classes : "open" questions
548 // {{{ abstract class SurveySimple extends SurveyQuestion
549 abstract class SurveySimple extends SurveyQuestion
550 {
551 public function checkAnswer($ans)
552 {
553 return array($ans);
554 }
555
556 public function getResultArray($sid, $qid)
557 {
558 $sql = 'SELECT answer
559 FROM survey_answers
560 WHERE vote_id IN (SELECT id FROM survey_votes WHERE survey_id={?})
561 AND question_id={?}
562 ORDER BY RAND()
563 LIMIT 5;';
564 $res = XDB::query($sql, $sid, $qid);
565 return $res->fetchAllAssoc();
566 }
567 }
568 // }}}
569
570 // {{{ class SurveyText extends SurveySimple : simple text field, allowing a few words
571 class SurveyText extends SurveySimple
572 {
573 public function getQuestionType()
574 {
575 return "text";
576 }
577 }
578 // }}}
579
580 // {{{ class SurveyTextarea extends SurveySimple : textarea field, allowing longer comments
581 class SurveyTextarea extends SurveySimple
582 {
583 public function getQuestionType()
584 {
585 return "textarea";
586 }
587 }
588 // }}}
589
590 // {{{ class SurveyNum extends SurveySimple : allows numerical answers
591 class SurveyNum extends SurveySimple
592 {
593 public function checkAnswer($ans)
594 {
595 return array(intval($ans));
596 }
597
598 protected function getQuestionType()
599 {
600 return "num";
601 }
602 }
603 // }}}
604 // }}}
605
606 // {{{ abstract class SurveyList and its derived classes : restricted questions that allows only a list of possible answers
607 // {{{ abstract class SurveyList extends SurveyQuestion
608 abstract class SurveyList extends SurveyQuestion
609 {
610 protected $choices;
611
612 public function update($args)
613 {
614 parent::update($args);
615 $this->choices = array();
616 foreach ($args['choices'] as $val) {
617 if (trim($val) || trim($val) == '0') {
618 $this->choices[] = $val;
619 }
620 }
621 }
622
623 public function toArray()
624 {
625 $rArr = parent::toArray();
626 $rArr['choices'] = $this->choices;
627 return $rArr;
628 }
629
630 public function getResultArray($sid, $qid)
631 {
632 $sql = 'SELECT answer, COUNT(id) AS count
633 FROM survey_answers
634 WHERE vote_id IN (SELECT id FROM survey_votes WHERE survey_id={?})
635 AND question_id={?}
636 GROUP BY answer ASC';
637 $res = XDB::query($sql, $sid, $qid);
638 return $res->fetchAllAssoc();
639 }
640
641 public function formatAnswer($ans)
642 {
643 if (array_key_exists($ans, $this->choices)) {
644 return $this->choices[$ans];
645 } else {
646 return null;
647 }
648 }
649 }
650 // }}}
651
652 // {{{ class SurveyRadio extends SurveyList : radio question, allows one answer among the list offered
653 class SurveyRadio extends SurveyList
654 {
655 public function checkAnswer($ans)
656 {
657 $a = intval($ans);
658 return (array_key_exists($a, $this->choices))? array($a) : null;
659 }
660
661 protected function getQuestionType()
662 {
663 return "radio";
664 }
665 }
666 // }}}
667
668 // {{{ class SurveyCheckbox extends SurveyList : checkbox question, allows any number of answers among the list offered
669 class SurveyCheckbox extends SurveyList
670 {
671 public function checkAnswer($ans)
672 {
673 $rep = array();
674 foreach ($ans as $a) {
675 $a = intval($a);
676 if (array_key_exists($a, $this->choices)) {
677 $rep[] = $a;
678 }
679 }
680 return (count($rep) == 0)? null : $rep;
681 }
682
683 protected function getQuestionType()
684 {
685 return "checkbox";
686 }
687 }
688 // }}}
689 // }}}
690
691 // {{{ abstract class SurveyTable and its derived classes : table question, each column represents a choice, each line represents a question
692 // {{{ abstract class SurveyTable extends SurveyList
693 abstract class SurveyTable extends SurveyList
694 {
695 protected $subquestions;
696
697 public function update($args)
698 {
699 parent::update($args);
700 $this->subquestions = array();
701 foreach ($args['subquestions'] as $val) {
702 if (trim($val) || trim($val) == '0') {
703 $this->subquestions[] = $val;
704 }
705 }
706 }
707
708 public function toArray()
709 {
710 $rArr = parent::toArray();
711 $rArr['subquestions'] = $this->subquestions;
712 return $rArr;
713 }
714
715 public function getResultArray($sid, $qid)
716 {
717 $sql = 'SELECT answer, COUNT(id) AS count
718 FROM survey_answers
719 WHERE vote_id IN (SELECT id FROM survey_votes WHERE survey_id={?})
720 AND question_id={?}
721 GROUP BY answer ASC';
722 $res = XDB::iterator($sql, $sid, $qid);
723 $result = array();
724 for ($i = 0; $i < count($this->subquestions); $i++) {
725 $result[$i] = array_fill(0, count($this->choices), 0);
726 }
727 while ($r = $res->next()) {
728 list($i, $j) = explode(':', $r['answer']);
729 $result[$i][$j] = $r['count'];
730 }
731 return $result;
732 }
733
734 public function formatAnswer($ans)
735 {
736 list($q, $c) = explode(':', $ans);
737 if (array_key_exists($q, $this->subquestions) && array_key_exists($c, $this->choices)) {
738 return array('id' => $q, 'answer' => $this->choices[$c]);
739 } else {
740 return null;
741 }
742 }
743
744 public function getCSVColumns()
745 {
746 $q = parent::getCSVColumns();
747 if (empty($this->subquestions)) {
748 return $q;
749 }
750 $a = array();
751 for ($k = 0; $k < count($this->subquestions); $k++) {
752 $a[$k] = $q.' : '.$this->subquestions[$k];
753 }
754 return $a;
755 }
756 }
757 // }}}
758
759 // {{{ class SurveyRadioTable extends SurveyTable : SurveyTable with radio type choices
760 class SurveyRadioTable extends SurveyTable
761 {
762 public function checkAnswer($ans)
763 {
764 $rep = array();
765 foreach ($ans as $k => $a) {
766 if (!array_key_exists($k, $this->subquestions)) {
767 continue;
768 }
769 $a = intval($a);
770 if (array_key_exists($a, $this->choices)) {
771 $rep[] = $k . ':' . $a;
772 }
773 }
774 return (count($rep) == 0)? null : $rep;
775 }
776
777 protected function getQuestionType()
778 {
779 return "radiotable";
780 }
781
782 }
783 // }}}
784
785 // {{{ class SurveyCheckboxTable extends SurveyTable : SurveyTable with checkbox type choices
786 class SurveyCheckboxTable extends SurveyTable
787 {
788 public function checkAnswer($ans)
789 {
790 $rep = array();
791 foreach ($ans as $k => $aa) {
792 if (!array_key_exists($k, $this->subquestions)) {
793 continue;
794 }
795 foreach ($aa as $a) {
796 $a = intval($a);
797 if (array_key_exists($a, $this->choices)) {
798 $rep[] = $k . ':' . $a;
799 }
800 }
801 }
802 return (count($rep) == 0)? null : $rep;
803 }
804
805 protected function getQuestionType()
806 {
807 return "checkboxtable";
808 }
809
810 }
811 // }}}
812 // }}}
813
814 // vim:set et sw=4 sts=4 ts=4 foldmethod=marker enc=utf-8:
815 ?>