50 $this->rbacsystem = $DIC->rbac()->system();
51 $this->
user = $DIC->user();
52 $this->
access = $DIC->access();
53 $this->tree = $DIC->repositoryTree();
54 $this->
toolbar = $DIC->toolbar();
55 $lng = $DIC->language();
57 $ilCtrl = $DIC->ctrl();
60 $this->request = $DIC->surveyQuestionPool()
68 $this->
ctrl = $ilCtrl;
69 $this->
ctrl->saveParameter($this,
"q_id");
70 $this->
ctrl->setParameterByClass(
71 $this->
ctrl->getCmdClass(),
73 $this->request->getSelectedQuestionTypes()
75 $this->cumulated = array();
76 $this->
tabs = $DIC->tabs();
81 $this->
object->loadFromDb($a_id);
85 $this->edit_manager = $DIC->surveyQuestionPool()
91 abstract protected function initObject(): void;
97 $cmd = $this->
ctrl->getCmd();
98 $next_class = $this->
ctrl->getNextClass($this);
99 switch ($next_class) {
101 $ret = $this->$cmd();
104 return (
string) $ret;
112 ?
string $questiontype,
113 int $question_id = -1
115 if ((!$questiontype) and ($question_id > 0)) {
119 $question_type_gui = $questiontype .
"GUI";
120 $question =
new $question_type_gui($question_id);
141 return $this->
object->getQuestionType();
146 $questiontext = $this->
object->getQuestiontext();
147 if (preg_match(
"/^<.[\\>]?>(.*?)<\\/.[\\>]*?>$/", $questiontext, $matches)) {
148 $questiontext = $matches[1];
150 $template->
setVariable(
"QUESTIONTEXT", $this->
object->prepareTextareaOutput($questiontext,
true));
151 if ($this->
object->getObligatory()) {
158 $this->parent_url = $a_url;
166 $this->
ctrl->setParameterByClass($guiclass,
"sel_question_types", $this->
getQuestionType());
167 $this->
ctrl->setParameterByClass(
170 $this->request->getQuestionId()
173 if ($this->parent_url) {
175 if ($this->request->getNewForSurvey() > 0) {
176 $addurl =
"&new_id=" . $this->request->getQuestionId();
178 $ilTabs->setBackTarget($this->
lng->txt(
"menubacktosurvey"), $this->parent_url . $addurl);
180 $ilTabs->setBackTarget($this->
lng->txt(
"spl"), $this->
ctrl->getLinkTargetByClass(
"ilObjSurveyQuestionPoolGUI",
"questions"));
182 if ($this->request->getQuestionId()) {
183 $ilTabs->addNonTabbedLink(
185 $this->
lng->txt(
"preview"),
186 $this->
ctrl->getLinkTargetByClass($guiclass,
"preview")
190 if ($rbacsystem->
checkAccess(
'edit', $this->request->getRefId())) {
193 $this->
lng->txt(
"properties"),
194 $this->
ctrl->getLinkTargetByClass($guiclass,
"editQuestion")
197 if (stripos($guiclass,
"matrix") !==
false) {
200 $this->
lng->txt(
"layout"),
201 $this->
ctrl->getLinkTargetByClass($guiclass,
"layout")
205 if ($this->request->getQuestionId() > 0) {
208 $this->
lng->txt(
"material"),
209 $this->
ctrl->getLinkTargetByClass($guiclass,
"material")
213 if ($this->
object->getId() > 0) {
214 $title = $this->
lng->txt(
"edit") .
" "" . $this->
object->getTitle() .
""";
219 $this->tpl->setVariable(
"HEADER", $title);
230 $form->setFormAction($this->
ctrl->getFormAction($this,
"save"));
231 $form->setTitle($this->
lng->txt($this->getQuestionType()));
232 $form->setMultipart(
false);
233 $form->setTableWidth(
"100%");
238 $title->setMaxLength(200);
239 $title->setRequired(
true);
240 $form->addItem($title);
244 $label->setInfo($this->
lng->txt(
"label_info"));
245 $title->setMaxLength(255);
246 $label->setRequired(
false);
247 $form->addItem($label);
251 $author->setRequired(
true);
252 $title->setMaxLength(100);
253 $form->addItem($author);
256 $description =
new ilTextInputGUI($this->
lng->txt(
"description"),
"description");
257 $description->setRequired(
false);
258 $title->setMaxLength(200);
259 $form->addItem($description);
264 $question->setRows(10);
265 $question->setCols(80);
267 $question->setUseRte(
true);
269 $question->addPlugin(
"latex");
270 $question->addButton(
"latex");
271 $question->addButton(
"pastelatex");
272 $question->setRTESupport($this->
object->getId(),
"spl",
"survey");
274 $form->addItem($question);
279 $shuffle->setRequired(
false);
280 $form->addItem($shuffle);
287 $title->setValue($this->
object->getTitle());
288 $label->setValue($this->
object->label);
289 $author->setValue($this->
object->getAuthor());
290 $description->setValue($this->
object->getDescription());
291 $question->setValue($this->
object->prepareTextareaOutput($this->object->getQuestiontext()));
292 $shuffle->setChecked($this->
object->getObligatory());
317 $this->tpl->setContent($a_form->getHTML());
322 $this->
save($this->request->getReturn(),
true);
334 $this->
object->setTitle($form->getInput(
"title"));
335 $this->
object->label = ($form->getInput(
"label"));
336 $this->
object->setAuthor($form->getInput(
"author"));
337 $this->
object->setDescription($form->getInput(
"description"));
338 $this->
object->setQuestiontext($form->getInput(
"question"));
339 $this->
object->setObligatory($form->getInput(
"obligatory"));
344 $this->
object->saveToDb();
349 $form->setValuesByPost();
355 bool $a_return =
false,
364 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"survey_error_insert_incomplete_question"));
369 $ilUser->setPref(
"svy_lastquestiontype", $this->
object->getQuestionType());
370 $ilUser->writePref(
"svy_lastquestiontype", $this->
object->getQuestionType());
373 $this->
ctrl->setParameter($this,
"q_id", $this->
object->getId());
377 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
378 $this->
ctrl->redirect($this,
'copySyncForm');
379 } elseif ($originalexists &&
383 $this->
ctrl->setParameter($this,
'rtrn', 1);
385 $this->
ctrl->redirect($this,
'originalSyncForm');
388 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
401 $this->tpl->setContent($tbl->getHTML());
409 $qids = $this->request->getQuestionIds();
410 if (count($qids) === 0) {
411 $this->tpl->setOnScreenMessage(
'failure', $lng->
txt(
"select_one"));
416 foreach ($this->
object->getCopyIds(
true) as $survey_id => $questions) {
420 foreach ($ref_ids as
$ref_id) {
421 if ($ilAccess->checkAccess(
"edit",
"", $ref_id)) {
428 foreach ($questions as $qid) {
429 if (in_array($qid, $qids)) {
430 $id = $this->
object->getId();
432 $this->
object->setId($qid);
433 $this->
object->setOriginalId(
$id);
434 $this->
object->saveToDb();
436 $this->
object->setId(
$id);
437 $this->
object->setOriginalId(null);
446 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"survey_sync_success"),
true);
456 $this->
ctrl->saveParameter($this,
"rtrn");
459 $cgui->setHeaderText($this->
lng->txt(
"confirm_sync_questions"));
461 $cgui->setFormAction($this->
ctrl->getFormAction($this,
"confirmRemoveQuestions"));
462 $cgui->setCancel($this->
lng->txt(
"no"),
"cancelSync");
463 $cgui->setConfirm($this->
lng->txt(
"yes"),
"sync");
465 $this->tpl->setContent($cgui->getHTML());
468 protected function sync(): void
470 $original_id = $this->
object->original_id;
472 $this->
object->syncWithOriginal();
475 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
481 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"question_changed_in_survey_only"),
true);
489 bool $a_return =
false 494 if ($this->parent_url) {
496 if ($this->request->getNewForSurvey() > 0) {
497 $addurl =
"&new_id=" . $this->request->getQuestionId();
503 $this->
ctrl->redirectByClass(
"ilObjSurveyQuestionPoolGUI",
"questions");
508 $this->
ctrl->setParameterByClass(
509 $this->
ctrl->getCmdClass(),
511 $this->
object->getId()
513 $this->
ctrl->setParameterByClass(
514 $this->
ctrl->getCmdClass(),
515 "sel_question_types",
516 $this->request->getSelectedQuestionTypes()
518 $this->
ctrl->setParameterByClass(
519 $this->
ctrl->getCmdClass(),
521 $this->request->getNewForSurvey()
523 $this->
ctrl->redirectByClass($this->
ctrl->getCmdClass(),
"editQuestion");
529 if ($this->parent_url) {
532 $this->
ctrl->redirectByClass(
"ilobjsurveyquestionpoolgui",
"questions");
546 int $question_title = 1,
547 bool $show_questiontext =
true,
548 ?
int $survey_id = null,
549 ?array $working_data = null
553 int $question_title = 1
556 switch ($question_title) {
561 #19448 get rid of showing only the label without title 568 if (trim($this->
object->getLabel())) {
579 int $question_title_mode = 1
582 switch ($question_title_mode) {
584 $title = $this->
object->getTitle();
588 $title = $this->
object->getTitle();
589 if (trim($this->
object->getLabel())) {
590 $title .=
' <span class="questionLabel">(' .
591 $this->
object->getLabel()
605 $tpl =
new ilTemplate(
"tpl.il_svy_qpl_preview.html",
true,
true,
"Modules/SurveyQuestionPool");
607 if ($this->
object->getObligatory()) {
609 $tpl->
setVariable(
"TEXT_REQUIRED", $this->
lng->txt(
"required_field"));
618 $this->tpl->setContent(
$panel->getHTML());
627 array $working_data = null,
628 int $question_title = 1,
629 bool $show_questiontext =
true,
630 string $error_message =
"",
631 int $survey_id = null,
632 bool $compress_view =
false 640 if (count($this->
object->getMaterial())) {
641 $template =
new ilTemplate(
"tpl.il_svy_qpl_material.html",
true,
true,
"Modules/SurveyQuestionPool");
642 foreach ($this->
object->getMaterial() as $material) {
643 $template->setCurrentBlock(
'material');
644 switch ($material->type) {
647 $template->setVariable(
'MATERIAL_TYPE',
'internallink');
648 $template->setVariable(
'MATERIAL_HREF', $href);
653 ) : $this->lng->txt(
'material'));
654 $template->setVariable(
'TEXT_AVAILABLE_MATERIALS', $this->
lng->txt(
'material'));
655 $template->parseCurrentBlock();
657 return $template->get();
670 bool $checkonly =
false 682 if ($rbacsystem->
checkAccess(
'write', $this->request->getRefId())) {
684 $form->setFormAction($this->
ctrl->getFormAction($this));
685 $form->setTitle($this->
lng->txt(
'add_material'));
686 $form->setMultipart(
false);
687 $form->setTableWidth(
"100%");
688 $form->setId(
"material");
696 $material->addOption(
new ilRadioOption($this->
lng->txt(
'glossary_term'),
"glo"));
697 $form->addItem($material);
699 $form->addCommandButton(
"addMaterial", $this->
lng->txt(
"add"));
702 $form->setValuesByPost();
703 $errors = !$form->checkInput();
708 $add_html = $form->getHTML();
713 if (count($this->
object->getMaterial())) {
717 $rbacsystem->
checkAccess(
'write', $this->request->getRefId())
720 foreach ($this->
object->getMaterial() as $material) {
721 switch ($material->type) {
724 $type = $this->
lng->txt(
'internal_link');
729 ) : $this->
lng->txt(
'material');
730 $data[] = array(
'href' => $href,
'title' => $title,
'type' =>
$type);
732 $table_gui->setData(
$data);
733 $mat_html = $table_gui->getHTML();
737 $this->tpl->setVariable(
"ADM_CONTENT", $add_html . $mat_html);
744 $mids = $this->request->getMaterialIndexes();
745 if (count($mids) > 0) {
746 $this->
object->deleteMaterials($mids);
747 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'materials_deleted'),
true);
749 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'no_checkbox'),
true);
751 $this->
ctrl->redirect($this,
'material');
762 $ilTabs->activateTab(
"material");
765 $this->
lng->txt(
"cancel"),
766 $this->
ctrl->getLinkTarget($this,
"material")
769 if ($this->edit_manager->getNewLinkType() !==
"" || !$this->
material(
true)) {
770 switch ($this->request->getNewLinkType()) {
772 $this->edit_manager->setNewLinkType(
"lm");
773 $this->edit_manager->setSearchLinkType(
"lm");
776 $this->edit_manager->setNewLinkType(
"glo");
777 $this->edit_manager->setSearchLinkType(
"glo");
780 $this->edit_manager->setNewLinkType(
"lm");
781 $this->edit_manager->setSearchLinkType(
"st");
784 $this->edit_manager->setNewLinkType(
"lm");
785 $this->edit_manager->setSearchLinkType(
"pg");
792 $this->edit_manager->getNewLinkType()
795 if (!$exp->handleCommand()) {
797 $panel->setHeading($this->
lng->txt(
"select_object_to_link"));
798 $panel->setBody($exp->getHTML());
800 $this->tpl->setContent(
$panel->getHTML());
807 $this->
object->material = array();
808 $this->
object->saveToDb();
814 $this->edit_manager->clearNewLinkType();
815 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"msg_cancel"),
true);
816 $this->
ctrl->redirect($this,
'material');
821 $this->
object->addInternalLink(
"il__pg_" . $this->request->getLinkItemId(
"pg"));
822 $this->edit_manager->clearNewLinkType();
823 $this->edit_manager->clearSearchLinkType();
824 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"material_added_successfully"),
true);
825 $this->
ctrl->redirect($this,
"material");
830 $this->
object->addInternalLink(
"il__st_" . $this->request->getLinkItemId(
"st"));
831 $this->edit_manager->clearNewLinkType();
832 $this->edit_manager->clearSearchLinkType();
833 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"material_added_successfully"),
true);
834 $this->
ctrl->redirect($this,
"material");
839 $this->
object->addInternalLink(
"il__git_" . $this->request->getLinkItemId(
"git"));
840 $this->edit_manager->clearNewLinkType();
841 $this->edit_manager->clearSearchLinkType();
842 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"material_added_successfully"),
true);
843 $this->
ctrl->redirect($this,
"material");
850 $selectable_items = array();
852 $source_id = $this->request->getLinkSourceId();
854 switch ($this->edit_manager->getSearchLinkType()) {
857 $cont_obj = $cont_obj_gui->getObject();
859 foreach ($pages as $page) {
860 if ($page[
"type"] === $this->edit_manager->getSearchLinkType()) {
861 $selectable_items[] = array(
862 "item_type" => $page[
"type"]
863 ,
"item_id" => $page[
"obj_id"]
864 ,
"title" => $page[
"title"]
872 $cont_obj = $cont_obj_gui->getObject();
874 $ctree = $cont_obj->getLMTree();
875 $nodes = $ctree->getSubtree($ctree->getNodeData($ctree->getRootId()));
876 foreach ($nodes as $node) {
877 if ($node[
"type"] === $this->edit_manager->getSearchLinkType()) {
878 $selectable_items[] = array(
879 "item_type" => $node[
"type"]
880 ,
"item_id" => $node[
"obj_id"]
881 ,
"title" => $node[
"title"]
890 $terms = $glossary->getTermList();
891 foreach ($terms as $term) {
892 $selectable_items[] = array(
894 ,
"item_id" => $term[
"id"]
895 ,
"title" => $term[
"term"]
901 $this->
object->addInternalLink(
"il__lm_" . $source_id);
905 if (count($selectable_items)) {
906 $ilTabs->activateTab(
"material");
907 $this->
ctrl->setParameter($this,
"q_id", $this->
object->getId());
908 $this->
ctrl->setParameter($this,
"source_id", $source_id);
911 $tbl->setData($selectable_items);
912 $this->tpl->setContent($tbl->getHTML());
913 } elseif ($this->edit_manager->getSearchLinkType() ===
"lm") {
914 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"material_added_successfully"),
true);
916 $this->edit_manager->clearSearchLinkType();
917 $this->edit_manager->clearNewLinkType();
918 $this->
ctrl->redirect($this,
"material");
920 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"material_added_empty"),
true);
921 $this->
ctrl->redirect($this,
"addMaterial");
933 $form->setFormAction($this->
ctrl->getFormAction($this,
"addSelectedPhrase"));
934 $form->setTitle($this->
lng->txt(
"add_phrase"));
939 $form->addItem($group);
944 $opt =
new ilRadioOption($phrase_array[
"title"], $phrase_id);
945 $opt->setInfo(implode(
",", $categories));
946 $group->addOption($opt);
948 if (($phrase_array[
"org_title"] ??
"") ===
"dp_standard_numbers") {
952 $opt->addSubItem($min);
957 $opt->addSubItem($max);
961 $form->addCommandButton(
"addSelectedPhrase", $this->
lng->txt(
"add_phrase"));
962 $form->addCommandButton(
"editQuestion", $this->
lng->txt(
"cancel"));
979 $this->
object->saveToDb();
985 $this->tpl->setContent($a_form->
getHTML());
991 if ($form->checkInput()) {
992 $phrase_id = $form->getInput(
"phrases");
995 if (strcmp($this->
object->getPhrase($phrase_id),
"dp_standard_numbers") !== 0) {
996 $this->
object->addPhrase($phrase_id);
998 $min = $form->getInput(
"lower_limit");
999 $max = $form->getInput(
"upper_limit");
1002 $max_field = $form->getItemByPostVar(
"upper_limit");
1003 $max_field->setAlert($this->
lng->txt(
"upper_limit_must_be_greater"));
1006 $this->
object->addStandardNumbers($min, $max);
1011 $this->
object->saveToDb();
1013 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'phrase_added'),
true);
1014 $this->
ctrl->redirect($this,
'editQuestion');
1018 $form->setValuesByPost();
1026 bool $a_reload =
false 1031 $ilTabs->activateTab(
"edit_properties");
1036 $this->
object->saveToDb();
1041 $ilToolbar->addInputItem(
$txt,
true);
1042 $ilToolbar->addFormButton($this->
lng->txt(
"confirm"),
"confirmSavePhrase");
1043 $ilToolbar->setFormAction($this->
ctrl->getFormAction($this));
1046 $table_gui->setDescription($this->
lng->txt(
"save_phrase_introduction"));
1049 if (method_exists($this->
object,
"getCategories")) {
1050 $categories = $this->
object->getCategories();
1052 $categories = $this->
object->getColumns();
1056 for (
$i = 0;
$i < $categories->getCategoryCount();
$i++) {
1057 $cat = $categories->getCategory(
$i);
1060 "answer" => $cat->title,
1061 "other" => $cat->other,
1062 "scale" => $cat->scale,
1063 "neutral" => $cat->neutral
1066 $table_gui->setData(
$data);
1067 $this->edit_manager->setPhraseData(
$data);
1069 $this->tpl->setContent($table_gui->getHTML());
1077 $title = $this->request->getPhraseTitle();
1080 if (!trim($title)) {
1081 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"qpl_savephrase_empty"));
1083 } elseif ($this->
object->phraseExists($title)) {
1084 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"qpl_savephrase_exists"));
1089 $this->
object->savePhrase($title);
1091 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"phrase_saved"),
true);
1092 $this->
ctrl->redirect($this,
"editQuestion");
1101 array $a_foot = null
1104 $html[] =
'<div class="ilTableOuter table-responsive">';
1105 $html[] =
'<table class="table table-striped">';
1107 $html[] =
"<thead>";
1109 foreach ($a_head as $col) {
1112 $html[] = ($col !=
"") ? $col :
" ";
1116 $html[] =
"</thead>";
1118 $html[] =
"<tbody>";
1119 foreach ($a_rows as $row) {
1121 foreach ($row as $col) {
1124 $html[] = ($col !=
"") ? $col :
" ";
1129 $html[] =
"</tbody>";
1132 $html[] =
"<tfoot>";
1134 foreach ($a_foot as $col) {
1137 $html[] = ($col !=
"") ? $col :
" ";
1141 $html[] =
"</tfoot>";
1144 $html[] =
"</table>";
1146 return implode(
"\n", $html);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getMaterialOutput()
Creates the HTML output of the question material(s)
getQuestionTitle(int $question_title_mode=1)
static getLogger(string $a_component_id)
Get component logger.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static _getRichTextEditor()
Returns the identifier for the Rich Text Editor.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if(isset($_FILES['img_file']) &&is_array($_FILES['img_file'])) $panel
getPrintViewQuestionTitle(int $question_title=1)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
material(bool $checkonly=false)
Material tab of the survey questions.
static _getAllReferences(int $id)
get all reference ids for object ID
EditManager $edit_manager
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
addPhrase(ilPropertyFormGUI $a_form=null)
Creates an output for the addition of phrases.
setPathOpen($a_id)
Set node path to be opened.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getQuestionType()
Returns the question type string.
static _getQuestionType(int $question_id)
Returns the question type of a question with a given id.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setBackUrl(string $a_url)
setVariable(string $variable, $value='')
Sets the given variable to the given value.
renderStatisticsDetailsTable(array $a_head, array $a_rows, array $a_foot=null)
getPrintView(int $question_title=1, bool $show_questiontext=true, ?int $survey_id=null, ?array $working_data=null)
outQuestionText(ilTemplate $template)
static _isWriteable(int $question_id, int $user_id)
is question writeable by a certain user
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
EditingGUIRequest $request
static _getQuestionGUI(?string $questiontype, int $question_id=-1)
Creates a question gui representation.
addMaterial()
Add materials to a question.
static _isComplete(int $question_id)
Checks whether the question is complete or not.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setVariable($variable, $value='')
Sets a variable value.
setQuestionTabsForClass(string $guiclass)
redirectAfterSaving(bool $a_return=false)
Redirect to calling survey or to edit form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addFieldsToEditForm(ilPropertyFormGUI $a_form)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
validateEditForm(ilPropertyFormGUI $a_form)
ilGlobalTemplateInterface $tpl
static _includeClass(string $question_type, int $gui=0)
Include the php class file for a given question type.
static _getClassNameForQType(string $q_type)
static _getGUIClassNameForId(int $a_q_id)
static _getCategoriesForPhrase(int $phrase_id)
Gets the available categories for a given phrase.
static redirect(string $a_script)
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
importEditFormValues(ilPropertyFormGUI $a_form)
activateTab(string $a_id)
save(bool $a_return=false, bool $a_sync=false)
addCommandButtons(ilPropertyFormGUI $a_form)
Manages editing processes/repos.
savePhrase(bool $a_reload=false)
Creates an output to save the current answers as a phrase.
static getPageList(int $lm_id)
This class represents a text area property in a property form.
editQuestion(ilPropertyFormGUI $a_form=null)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Class ilObjContentObjectGUI.
static _getAvailablePhrases(bool $useronly=false)
Gets the available phrases from the database.
static _getInternalLinkHref(string $target="", int $a_parent_ref_id=null)
confirmSavePhrase()
Save a new phrase to the database.
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
static _lookupType(int $id, bool $reference=false)
Basic class for all survey question types The SurveyQuestionGUI class defines and encapsulates basic ...
getWorkingForm(array $working_data=null, int $question_title=1, bool $show_questiontext=true, string $error_message="", int $survey_id=null, bool $compress_view=false)
static _getUsedHTMLTags(string $a_module="")
Returns an array of all allowed HTML tags for text editing.
static _questionExists(int $question_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...