25 protected \ILIAS\Survey\Editing\EditingGUIRequest
$request;
39 $this->
access = $DIC->access();
40 $ilCtrl = $DIC->ctrl();
41 $lng = $DIC->language();
44 $this->parent_gui = $a_parent_gui;
48 $this->
object = $survey;
50 $this->
ctrl = $ilCtrl;
53 $this->edit_manager = $DIC->survey()
57 $this->request = $DIC->survey()
68 $cmd = $ilCtrl->
getCmd(
"constraints");
79 $step = $this->request->getStep();
96 $mess = $mbox->getHTML();
98 $this->edit_manager->setConstraintStructure($tbl->getStructure());
101 $this->tpl->setContent($mess . $tbl->getHTML());
109 if ($this->request->getConstraintPar(
"v") ===
'') {
110 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"msg_enter_value_for_valid_constraint"));
114 $survey_questions = $this->
object->getSurveyQuestions();
115 $structure = $this->edit_manager->getConstraintStructure();
116 $include_elements = $this->edit_manager->getConstraintElements();
117 foreach ($include_elements as $elementCounter) {
119 if ($this->request->getPrecondition() !==
'') {
120 $this->
object->updateConstraint(
121 $this->request->getPrecondition(),
122 $this->request->getConstraintPar(
"q"),
123 $this->request->getConstraintPar(
"r"),
124 $this->request->getConstraintPar(
"v"),
125 $this->request->getConstraintPar(
"c")
128 $constraint_id = $this->
object->addConstraint(
129 $this->request->getConstraintPar(
"q"),
130 $this->request->getConstraintPar(
"r"),
131 $this->request->getConstraintPar(
"v"),
132 $this->request->getConstraintPar(
"c")
134 foreach (
$structure[$elementCounter] as $key => $question_id) {
135 $this->
object->addConstraintToQuestion($question_id, $constraint_id);
139 $this->
object->updateConjunctionForQuestions(
141 $this->request->getConstraintPar(
"c")
146 $this->edit_manager->clearConstraintElements();
147 $this->edit_manager->clearConstraintStructure();
148 $this->
ctrl->redirect($this,
"constraints");
156 $survey_questions = $this->
object->getSurveyQuestions();
157 $structure = $this->edit_manager->getConstraintStructure();
158 if (is_null($start)) {
159 $start = $this->request->getStart();
161 $option_questions = array();
162 for ($i = 1; $i < $start; $i++) {
164 foreach (
$structure[$i] as $key => $question_id) {
165 if ($survey_questions[$question_id][
"usableForPrecondition"]) {
166 $option_questions[] = array(
"question_id" => $survey_questions[$question_id][
"question_id"],
167 "title" => $survey_questions[$question_id][
"title"],
168 "type_tag" => $survey_questions[$question_id][
"type_tag"]
174 if (count($option_questions) === 0) {
175 $this->edit_manager->clearConstraintElements();
176 $this->edit_manager->clearConstraintStructure();
177 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"constraints_no_nonessay_available"),
true);
178 $this->
ctrl->redirect($this,
"constraints");
188 $survey_questions = $this->
object->getSurveyQuestions();
189 $option_questions = array();
190 $q = $this->request->getConstraintPar(
"q");
191 $option_questions[] = array(
193 "title" => $survey_questions[
$q][
"title"],
194 "type_tag" => $survey_questions[$q][
"type_tag"]
204 $survey_questions = $this->
object->getSurveyQuestions();
205 $option_questions = array();
206 if ($this->request->getPrecondition() !==
'') {
208 $this->
ctrl->redirect($this,
"constraints");
211 $pc = $this->
object->getPrecondition($this->request->getPrecondition());
213 "c" => $pc[
"conjunction"],
214 "q" => $pc[
"question_fi"],
215 "r" => $pc[
"relation_id"],
218 $option_questions[] = array(
"question_id" => $pc[
"question_fi"],
219 "title" => $survey_questions[$pc[
"question_fi"]][
"title"],
220 "type_tag" => $survey_questions[$pc[
"question_fi"]][
"type_tag"]
222 $this->
constraintForm(3, $postvalues, $survey_questions, $option_questions);
224 $q = $this->request->getConstraintPar(
"q");
225 $option_questions[] = array(
227 "title" => $survey_questions[
$q][
"title"],
228 "type_tag" => $survey_questions[$q][
"type_tag"]
237 "c" => $this->request->getConstraintPar(
"c"),
238 "q" => $this->request->getConstraintPar(
"q"),
239 "r" => $this->request->getConstraintPar(
"r"),
240 "v" => $this->request->getConstraintPar(
"v")
248 array $survey_questions,
249 ?array $questions =
null 251 if ((
string) $this->request->getStart() !==
'') {
252 $this->
ctrl->setParameter($this,
"start", $this->request->getStart());
254 $this->
ctrl->saveParameter($this,
"precondition");
256 $form->setFormAction($this->
ctrl->getFormAction($this));
257 $form->setTableWidth(
"100%");
258 $form->setId(
"constraintsForm");
260 $constraint_structure = $this->edit_manager->getConstraintStructure();
264 $title_ids = $this->edit_manager->getConstraintElements();
266 $title_ids = array($this->request->getStart());
268 foreach ($title_ids as $title_id) {
270 if ($survey_questions[$constraint_structure[$title_id][0]][
"questionblock_id"] > 0) {
271 $title[] = $this->
lng->txt(
"questionblock") .
": " . $survey_questions[$constraint_structure[$title_id][0]][
"questionblock_title"];
275 $title[] = $this->
lng->txt($survey_questions[$constraint_structure[$title_id][0]][
"type_tag"]) .
": " .
276 $survey_questions[$constraint_structure[$title_id][0]][
"title"];
280 $header->setTitle(implode(
"<br/>", $title));
281 $form->addItem($header);
285 $fulfilled->addOption(
new ilRadioOption($this->
lng->txt(
"conjunction_or"),
'1',
''));
286 $fulfilled->setValue((strlen($postvalues[
'c'])) ? $postvalues[
'c'] : 0);
287 $form->addItem($fulfilled);
289 $step1 =
new ilSelectInputGUI($this->
lng->txt(
"step") .
" 1: " . $this->
lng->txt(
"select_prior_question"),
"q");
291 if (is_array($questions)) {
292 foreach ($questions as $question) {
296 $step1->setOptions($options);
297 $step1->setValue($postvalues[
"q"]);
298 $form->addItem($step1);
301 $relations = $this->
object->getAllRelations();
302 $step2 =
new ilSelectInputGUI($this->
lng->txt(
"step") .
" 2: " . $this->
lng->txt(
"select_relation"),
"r");
304 foreach ($relations as $rel_id =>
$relation) {
305 if (in_array(
$relation[
"short"], $survey_questions[$postvalues[
"q"]][
"availableRelations"])) {
309 $step2->setOptions($options);
310 $step2->setValue($postvalues[
"r"]);
311 $form->addItem($step2);
315 $variables = $this->
object->getVariables($postvalues[
"q"]);
316 $question_type = $survey_questions[$postvalues[
"q"]][
"type_tag"];
318 $question =
new $question_type();
319 $question->loadFromDb($postvalues[
"q"]);
321 $step3 = $question->getPreconditionSelectValue($postvalues[
"v"], $this->
lng->txt(
"step") .
" 3: " . $this->
lng->txt(
"select_value"),
"v");
322 $form->addItem($step3);
330 $cmd_continue =
"constraintStep2";
331 $cmd_back =
"constraints";
334 $cmd_continue =
"constraintStep3";
335 $cmd_back =
"constraintStep1";
338 $cmd_continue =
"constraintsAdd";
339 $cmd_back =
"constraintStep2";
342 $form->addCommandButton($cmd_back, $this->
lng->txt(
"back"));
343 $form->addCommandButton($cmd_continue, $this->
lng->txt(
"continue"));
345 $this->tpl->setVariable(
"ADM_CONTENT", $form->getHTML());
361 if (!$ilAccess->checkAccess(
"write",
"", $this->object->getRefId())) {
373 $id = (
int) $this->request->getPrecondition();
375 $this->
ctrl->redirect($this,
"constraints");
378 $constraint = $this->
object->getPrecondition(
$id);
379 $questions = $this->
object->getSurveyQuestions();
380 $question = $questions[$constraint[
"question_fi"]];
381 $relation = $questions[$constraint[
"ref_question_fi"]];
387 $question_obj =
new $question_type();
388 $question_obj->loadFromDb($constraint[
"question_fi"]);
389 $valueoutput = $question_obj->getPreconditionValueOutput($constraint[
"value"]);
391 $title = $question[
"title"] .
" " . $constraint[
"shortname"] .
" " . $valueoutput;
393 $this->
ctrl->saveParameter($this,
"precondition");
396 $cgui->setHeaderText(sprintf($this->
lng->txt(
"survey_sure_delete_constraint"), $title,
$relation));
398 $cgui->setFormAction($this->
ctrl->getFormAction($this,
"deleteConstraints"));
399 $cgui->setCancel($this->
lng->txt(
"cancel"),
"constraints");
400 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"deleteConstraints");
402 $this->tpl->setContent($cgui->getHTML());
407 $id = (
int) $this->request->getPrecondition();
409 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"survey_constraint_deleted"),
true);
410 $this->
object->deleteConstraint(
$id);
413 $this->
ctrl->redirect($this,
"constraints");
418 $include_elements = $this->request->getIncludeElements();
419 if (count($include_elements) === 0) {
420 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"constraints_no_questions_or_questionblocks_selected"),
true);
421 $this->
ctrl->redirect($this,
"constraints");
422 } elseif (count($include_elements) >= 1) {
423 $this->edit_manager->setConstraintElements($include_elements);
424 sort($include_elements, SORT_NUMERIC);
435 $this->
ctrl->redirect($this,
"constraints");
438 $this->edit_manager->setConstraintElements([$this->request->getStart()]);
439 $this->
ctrl->setParameter($this,
"precondition", $this->request->getPrecondition());
440 $this->
ctrl->setParameter($this,
"start", $this->request->getStart());
441 $this->
ctrl->redirect($this,
"constraintStep3");
getConstraintParsFromPost()
This class represents an option in a radio group.
createConstraintsObject()
confirmDeleteConstraintsObject()
Delete constraint confirmation.
static _hasDatasets(int $survey_id)
ilGlobalTemplateInterface $tpl
constraintStep2Object()
Handles the second step of the precondition add action.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getCmd(?string $fallback_command=null)
static _getQuestionTypeName(string $type_tag)
Return the translation for a given question type.
static _getQuestionType(int $question_id)
Returns the question type of a question with a given id.
validateConstraintForEdit(int $a_id)
Validate if given constraint id is part of current survey and there are sufficient permissions to edi...
sort()
description: > Example for rendering a Sort Glyph.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilObjSurveyGUI: ilSurveyEvaluationGUI, ilSurveyExecutionGUI ilObjSurveyGUI: ilObjectMetaDataGUI, ilPermissionGUI ilObjSurveyGUI: ilInfoScreenGUI, ilObjectCopyGUI ilObjSurveyGUI: ilSurveySkillDeterminationGUI ilObjSurveyGUI: ilCommonActionDispatcherGUI, ilSurveySkillGUI ilObjSurveyGUI: ilSurveyEditorGUI, ilSurveyConstraintsGUI ilObjSurveyGUI: ilSurveyParticipantsGUI, ilLearningProgressGUI ilObjSurveyGUI: ilExportGUI, ilLTIProviderObjectSettingGUI ilObjSurveyGUI: ILIAS
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS Survey Editing EditManager $edit_manager
$structure
TOTAL STRUCTURE.
static _includeClass(string $question_type, int $gui=0)
Include the php class file for a given question type.
deleteConstraintsObject()
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
constraintsObject()
Administration page for survey constraints.
constraintStep1Object($start=null)
Handles the first step of the precondition add action.
constraintStep3Object()
Handles the third step of the precondition add action.
constraintForm(int $step, array $postvalues, array $survey_questions, ?array $questions=null)
constraintsAddObject()
Add a precondition for a survey question or question block.
ilObjSurveyGUI $parent_gui
ILIAS Survey Editing EditingGUIRequest $request