40 $this->access = $DIC->access();
42 $lng = $DIC->language();
45 $this->parent_gui = $a_parent_gui;
46 $this->
object = $this->parent_gui->object;
57 $cmd =
$ilCtrl->getCmd(
"constraints");
69 if (array_key_exists(
"step",
$_GET)) {
70 $step = (int)
$_GET[
"step"];
92 $mess = $mbox->getHTML();
94 $_SESSION[
"constraintstructure"] = $tbl->getStructure();
97 $this->tpl->setContent($mess . $tbl->getHTML());
105 if (strlen(
$_POST[
"v"]) == 0) {
109 $survey_questions = &$this->
object->getSurveyQuestions();
110 $structure = &
$_SESSION[
"constraintstructure"];
111 $include_elements =
$_SESSION[
"includeElements"];
112 foreach ($include_elements as $elementCounter) {
113 if (is_array($structure[$elementCounter])) {
114 if (strlen(
$_GET[
"precondition"])) {
118 foreach ($structure[$elementCounter] as $key => $question_id) {
119 $this->
object->addConstraintToQuestion($question_id, $constraint_id);
122 if (count($structure[$elementCounter]) > 1) {
123 $this->
object->updateConjunctionForQuestions($structure[$elementCounter],
$_POST[
'c']);
129 $this->ctrl->redirect($this,
"constraints");
137 $survey_questions = &$this->
object->getSurveyQuestions();
138 $structure = &
$_SESSION[
"constraintstructure"];
139 $start =
$_GET[
"start"];
140 $option_questions = array();
141 for (
$i = 1;
$i < $start;
$i++) {
142 if (is_array($structure[
$i])) {
143 foreach ($structure[$i] as $key => $question_id) {
144 if ($survey_questions[$question_id][
"usableForPrecondition"]) {
145 array_push($option_questions, array(
"question_id" => $survey_questions[$question_id][
"question_id"],
"title" => $survey_questions[$question_id][
"title"],
"type_tag" => $survey_questions[$question_id][
"type_tag"]));
150 if (count($option_questions) == 0) {
153 ilUtil::sendInfo($this->lng->txt(
"constraints_no_nonessay_available"),
true);
154 $this->ctrl->redirect($this,
"constraints");
164 $survey_questions = &$this->
object->getSurveyQuestions();
165 $option_questions = array();
166 array_push($option_questions, array(
"question_id" =>
$_POST[
"q"],
"title" => $survey_questions[
$_POST[
"q"]][
"title"],
"type_tag" => $survey_questions[$_POST[
"q"]][
"type_tag"]));
167 $this->
constraintForm(2, $_POST, $survey_questions, $option_questions);
175 $survey_questions = &$this->
object->getSurveyQuestions();
176 $option_questions = array();
177 if (strlen(
$_GET[
"precondition"])) {
179 $this->ctrl->redirect($this,
"constraints");
182 $pc = $this->
object->getPrecondition(
$_GET[
"precondition"]);
184 "c" => $pc[
"conjunction"],
185 "q" => $pc[
"question_fi"],
186 "r" => $pc[
"relation_id"],
189 array_push($option_questions, array(
"question_id" => $pc[
"question_fi"],
"title" => $survey_questions[$pc[
"question_fi"]][
"title"],
"type_tag" => $survey_questions[$pc[
"question_fi"]][
"type_tag"]));
190 $this->
constraintForm(3, $postvalues, $survey_questions, $option_questions);
192 array_push($option_questions, array(
"question_id" =>
$_POST[
"q"],
"title" => $survey_questions[
$_POST[
"q"]][
"title"],
"type_tag" => $survey_questions[$_POST[
"q"]][
"type_tag"]));
193 $this->
constraintForm(3, $_POST, $survey_questions, $option_questions);
197 public function constraintForm($step, $postvalues, &$survey_questions, $questions =
false)
199 if (strlen(
$_GET[
"start"])) {
200 $this->ctrl->setParameter($this,
"start",
$_GET[
"start"]);
202 $this->ctrl->saveParameter($this,
"precondition");
204 $form->setFormAction($this->ctrl->getFormAction($this));
205 $form->setTableWidth(
"100%");
206 $form->setId(
"constraintsForm");
210 $title_ids =
$_SESSION[
"includeElements"];
212 $title_ids = array(
$_GET[
"start"]);
214 foreach ($title_ids as $title_id) {
216 if ($survey_questions[
$_SESSION[
"constraintstructure"][$title_id][0]][
"questionblock_id"] > 0) {
217 $title[] = $this->lng->txt(
"questionblock") .
": " . $survey_questions[
$_SESSION[
"constraintstructure"][$title_id][0]][
"questionblock_title"];
221 $title[] = $this->lng->txt($survey_questions[
$_SESSION[
"constraintstructure"][$title_id][0]][
"type_tag"]) .
": " .
222 $survey_questions[
$_SESSION[
"constraintstructure"][$title_id][0]][
"title"];
226 $header->setTitle(implode(
"<br/>", $title));
227 $form->addItem($header);
231 $fulfilled->addOption(
new ilRadioOption($this->lng->txt(
"conjunction_or"),
'1',
''));
232 $fulfilled->setValue((strlen($postvalues[
'c'])) ? $postvalues[
'c'] : 0);
233 $form->addItem($fulfilled);
235 $step1 =
new ilSelectInputGUI($this->lng->txt(
"step") .
" 1: " . $this->lng->txt(
"select_prior_question"),
"q");
237 if (is_array($questions)) {
238 foreach ($questions as $question) {
242 $step1->setOptions($options);
243 $step1->setValue($postvalues[
"q"]);
244 $form->addItem($step1);
247 $relations = $this->
object->getAllRelations();
248 $step2 =
new ilSelectInputGUI($this->lng->txt(
"step") .
" 2: " . $this->lng->txt(
"select_relation"),
"r");
250 foreach ($relations as $rel_id => $relation) {
251 if (in_array($relation[
"short"], $survey_questions[$postvalues[
"q"]][
"availableRelations"])) {
252 $options[$rel_id] = $relation[
'short'];
256 $step2->setValue($postvalues[
"r"]);
257 $form->addItem($step2);
261 $variables = &$this->
object->getVariables($postvalues[
"q"]);
262 $question_type = $survey_questions[$postvalues[
"q"]][
"type_tag"];
264 $question =
new $question_type();
265 $question->loadFromDb($postvalues[
"q"]);
267 $step3 = $question->getPreconditionSelectValue($postvalues[
"v"], $this->lng->txt(
"step") .
" 3: " . $this->lng->txt(
"select_value"),
"v");
268 $form->addItem($step3);
273 $cmd_continue =
"constraintStep2";
274 $cmd_back =
"constraints";
277 $cmd_continue =
"constraintStep3";
278 $cmd_back =
"constraintStep1";
281 $cmd_continue =
"constraintsAdd";
282 $cmd_back =
"constraintStep2";
285 $form->addCommandButton($cmd_back, $this->lng->txt(
"back"));
286 $form->addCommandButton($cmd_continue, $this->lng->txt(
"continue"));
288 $this->tpl->setVariable(
"ADM_CONTENT", $form->getHTML());
304 if (!$ilAccess->checkAccess(
"write",
"", $this->object->getRefId())) {
316 $id = (int) $_REQUEST[
"precondition"];
318 $this->ctrl->redirect($this,
"constraints");
321 $constraint = $this->
object->getPrecondition($id);
322 $questions = $this->
object->getSurveyQuestions();
323 $question = $questions[$constraint[
"question_fi"]];
324 $relation = $questions[$constraint[
"ref_question_fi"]];
325 $relation = $relation[
"title"];
330 $question_obj =
new $question_type();
331 $question_obj->loadFromDb($constraint[
"question_fi"]);
332 $valueoutput = $question_obj->getPreconditionValueOutput($constraint[
"value"]);
334 $title = $question[
"title"] .
" " . $constraint[
"shortname"] .
" " . $valueoutput;
336 $this->ctrl->saveParameter($this,
"precondition");
339 $cgui->setHeaderText(sprintf($this->lng->txt(
"survey_sure_delete_constraint"), $title, $relation));
341 $cgui->setFormAction($this->ctrl->getFormAction($this,
"deleteConstraints"));
342 $cgui->setCancel($this->lng->txt(
"cancel"),
"constraints");
343 $cgui->setConfirm($this->lng->txt(
"confirm"),
"deleteConstraints");
345 $this->tpl->setContent($cgui->getHTML());
353 $id = (int) $_REQUEST[
"precondition"];
355 ilUtil::sendSuccess($this->lng->txt(
"survey_constraint_deleted"),
true);
356 $this->
object->deleteConstraint($id);
359 $this->ctrl->redirect($this,
"constraints");
364 $include_elements =
$_POST[
"includeElements"];
365 if ((!is_array($include_elements)) || (count($include_elements) == 0)) {
366 ilUtil::sendInfo($this->lng->txt(
"constraints_no_questions_or_questionblocks_selected"),
true);
367 $this->ctrl->redirect($this,
"constraints");
368 } elseif (count($include_elements) >= 1) {
369 $_SESSION[
"includeElements"] = $include_elements;
370 sort($include_elements, SORT_NUMERIC);
371 $_GET[
"start"] = $include_elements[0];
379 $this->ctrl->redirect($this,
"constraints");
383 $this->ctrl->setParameter($this,
"precondition",
$_GET[
"precondition"]);
384 $this->ctrl->setParameter($this,
"start",
$_GET[
"start"]);
385 $this->ctrl->redirect($this,
"constraintStep3");
This class represents an option in a radio group.
constraintStep1Object()
Handles the first step of the precondition add action.
createConstraintsObject()
confirmDeleteConstraintsObject()
Delete constraint confirmation.
constraintStep2Object()
Handles the second step of the precondition add action.
Class ilSurveyConstraintsGUI.
static _hasDatasets($survey_id)
static _includeClass($question_type, $gui=0)
Include the php class file for a given question type.
constraintForm($step, $postvalues, &$survey_questions, $questions=false)
static _getQuestionType($question_id)
Returns the question type of a question with a given id.
static _getQuestionTypeName($type_tag)
Return the translation for a given question type tag.
TableGUI class for survey constraints.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
Message box for survey, when data is alrady available.
deleteConstraintsObject()
Delete constraints of a survey.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
constraintsObject()
Administration page for survey constraints.
validateConstraintForEdit($a_id)
Validate if given constraint id is part of current survey and there are sufficient permissions to edi...
constraintStep3Object()
Handles the third step of the precondition add action.
constraintsAddObject()
Add a precondition for a survey question or question block.
__construct(ilObjSurveyGUI $a_parent_gui)
Confirmation screen class.