2 /***************************************************************************
3 * Copyright (C) 2003-2014 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
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. *
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. *
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 *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
22 interface SurveyQuestionContainer
24 public function addQuestion(SurveyQuestion
$question, $pos = null
);
25 public function newQuestion($type, $pos = null
);
26 public function reassignQuestionIds();
29 class SurveyQuestion
extends PlDBTableEntry
32 protected $parentQuestion;
34 public function __construct(Survey
$survey)
36 parent
::__construct('survey_questions');
37 $this->registerFieldFormatter('parameters', 'JSonFieldFormatter');
38 $this->survey
= $survey;
41 public function typedInstance()
43 $instance = self
::instanceForType($this->survey
, $this->type
);
44 $instance->copy($this);
48 public static function instanceForType(Survey
$survey, $type)
50 require_once dirname(__FILE__
) . '/' . $type . '.inc.php';
51 $class = 'SurveyQuestion' . $type;
52 return new $class($survey);
55 public function voteTemplate()
57 return 'survey/question.' . $this->type
. '.tpl';
60 public function editTemplate()
62 return 'survey/edit.' . $this->type
. '.tpl';
65 protected function buildAnswer(SurveyAnswer
$answer, PlDict
$answers)
67 Platal
::assert(false
, "This should not happen");
70 public function vote(SurveyVote
$vote, PlDict
$answers)
72 if ($this->flags
->hasFlag('noanswer')) {
73 if ($answers->has($this->qid
)) {
74 throw new Exception("Des réponses ont été données à une question n'en attendant pas");
78 $answer = $vote->getAnswer($this);
79 if (is_null($answer)) {
82 if (!$this->buildAnswer($answer, $answers)) {
85 if ($this->flags
->hasFlag('mandatory') && is_null($answer->answer
)) {
86 $answer->inError
= 'Tu dois répondre à cette question';
92 class SurveyQuestionGroup
extends SurveyQuestion
implements SurveyQuestionContainer
94 public $children = array();
96 public function __construct(Survey
$survey)
98 parent
::__construct($survey);
101 public function addQuestion(SurveyQuestion
$question, $pos = null
)
103 $question->parentQuestion
= $this;
105 $this->children
[] = $question;
107 array_splice($this->children
, $pos, 0, $question);
111 public function newQuestion($type, $pos = null
)
113 $question = SurveyQuestion
::instanceForType($this->survey
, $type);
114 $this->addQuestion($question, $pos);
118 public function reassignQuestionIds()
120 $id = $this->qid +
1;
121 foreach ($this->children
as $question) {
122 $question->qid
= $id;
123 if ($question instanceof SurveyQuestionContainer
) {
124 $id = $question->reassignQuestionIds();
132 protected function postSave()
134 foreach ($this->children
as $question) {
135 $question->sid
= $this->sid
;
136 $question->parent
= $this->qid
;
141 public function export()
143 $export = parent
::export();
144 $export['children'] = array();
145 foreach ($this->children
as $child) {
146 $export['children'][] = $child->export();
151 public function vote(SurveyVote
$vote, PlDict
$answers)
153 $a = parent
::vote($vote, $answers);
154 foreach ($this->children
as $child) {
155 $child->vote($vote, $answers);
160 public function child($qid)
163 foreach ($this->children
as $question) {
164 if ($qid == $question->qid
) {
166 } else if ($qid < $question->qid
) {
167 Platal
::assert($prev instanceof SurveyQuestionGroup
);
168 return $prev->child($qid);
172 Platal
::assert($prev instanceof SurveyQuestionGroup
);
173 return $prev->child($qid);
177 // vim:set et sw=4 sts=4 ts=4 foldmethod=marker enc=utf-8: