24 protected \ILIAS\DI\UIServices
$ui;
37 bool $a_write_access =
false 41 $this->rbacreview = $DIC->rbac()->review();
42 $this->
user = $DIC->user();
45 $this->edit_manager = $DIC->surveyQuestionPool()
52 $lng = $DIC->language();
53 $ilCtrl = $DIC->ctrl();
54 $this->
ui = $DIC->ui();
56 $this->renderer = $DIC->ui()->renderer();
57 $this->ui_factory = $DIC->ui()->factory();
60 $this->
ctrl = $ilCtrl;
72 if (strcmp(
$c,
'description') === 0) {
73 $this->
addColumn($this->
lng->txt(
"description"),
'description',
'');
75 if (strcmp(
$c,
'type') === 0) {
76 $this->
addColumn($this->
lng->txt(
"question_type"),
'type',
'');
78 if (strcmp(
$c,
'author') === 0) {
79 $this->
addColumn($this->
lng->txt(
"author"),
'author',
'');
81 if (strcmp(
$c,
'created') === 0) {
82 $this->
addColumn($this->
lng->txt(
"create_date"),
'created',
'');
84 if (strcmp(
$c,
'updated') === 0) {
85 $this->
addColumn($this->
lng->txt(
"last_update"),
'tstamp',
'');
91 $clip_questions = $this->edit_manager->getQuestionsFromClipboard();
100 if (count($clip_questions) > 0) {
108 $this->
setRowTemplate(
"tpl.il_svy_qpl_questions_row.html",
"Modules/SurveyQuestionPool");
128 $ti->setMaxLength(64);
130 $ti->setValidationRegexp(
'/^[^%]+$/is');
132 $ti->readFromSession();
133 $this->
filter[
"title"] = $ti->getValue();
137 $ti->setMaxLength(64);
139 $ti->setValidationRegexp(
'/^[^%]+$/is');
141 $ti->readFromSession();
142 $this->
filter[
"description"] = $ti->getValue();
146 $ti->setMaxLength(64);
148 $ti->setValidationRegexp(
'/^[^%]+$/is');
150 $ti->readFromSession();
151 $this->
filter[
"author"] = $ti->getValue();
156 $options[
""] =
$lng->
txt(
'filter_all_question_types');
157 foreach ($types as $translation => $row) {
158 $options[$row[
'type_tag']] = $translation;
162 $si->setOptions($options);
164 $si->readFromSession();
165 $this->
filter[
"type"] = $si->getValue();
171 $cols[
"description"] = array(
172 "txt" =>
$lng->
txt(
"description"),
175 $cols[
"type"] = array(
176 "txt" =>
$lng->
txt(
"question_type"),
179 $cols[
"author"] = array(
183 $cols[
"created"] = array(
184 "txt" =>
$lng->
txt(
"create_date"),
187 $cols[
"updated"] = array(
188 "txt" =>
$lng->
txt(
"last_update"),
194 protected function fillRow(array $a_set): void
197 $guiclass = $class .
"GUI";
198 $this->
ctrl->setParameterByClass(strtolower($guiclass),
"q_id", $a_set[
"question_id"]);
202 $url_edit = $this->
ctrl->getLinkTargetByClass(strtolower($guiclass),
"editQuestion");
204 $this->tpl->setCurrentBlock(
"title_link_bl");
205 $this->tpl->setVariable(
"QUESTION_TITLE_LINK", $a_set[
"title"]);
206 $this->tpl->setVariable(
"URL_TITLE", $url_edit);
208 $this->tpl->setCurrentBlock(
"title_nolink_bl");
209 $this->tpl->setVariable(
"QUESTION_TITLE", $a_set[
"title"]);
211 $this->tpl->parseCurrentBlock();
213 if ((
int) $a_set[
"complete"] === 0) {
214 $icon = $this->ui_factory->symbol()->icon()->custom(
ilUtil::getImagePath(
"icon_alert.svg"), $this->
lng->txt(
"warning_question_not_complete"));
215 $this->tpl->setCurrentBlock(
"qpl_warning");
216 $this->tpl->setVariable(
"ICON_WARNING", $this->renderer->render(
$icon));
217 $this->tpl->parseCurrentBlock();
221 if (strcmp($c,
'description') === 0) {
222 $this->tpl->setCurrentBlock(
'description');
223 $this->tpl->setVariable(
"QUESTION_COMMENT", ($a_set[
"description"] ??
'') !==
'' ? $a_set[
"description"] :
" ");
224 $this->tpl->parseCurrentBlock();
226 if (strcmp($c,
'type') === 0) {
227 $this->tpl->setCurrentBlock(
'type');
229 $this->tpl->parseCurrentBlock();
231 if (strcmp($c,
'author') === 0) {
232 $this->tpl->setCurrentBlock(
'author');
233 $this->tpl->setVariable(
"QUESTION_AUTHOR", $a_set[
"author"]);
234 $this->tpl->parseCurrentBlock();
236 if (strcmp($c,
'created') === 0) {
237 $this->tpl->setCurrentBlock(
'created');
239 $this->tpl->parseCurrentBlock();
241 if (strcmp($c,
'updated') === 0) {
242 $this->tpl->setCurrentBlock(
'updated');
244 $this->tpl->parseCurrentBlock();
250 $list->setId($a_set[
"question_id"]);
251 $list->setListTitle($this->
lng->txt(
"actions"));
253 $list->addItem($this->
lng->txt(
"edit"),
"", $url_edit);
255 $list->addItem($this->
lng->txt(
"preview"),
"", $this->
ctrl->getLinkTargetByClass(strtolower($guiclass),
"preview"));
256 $this->tpl->setVariable(
"ACTION", $list->getHTML());
257 $this->tpl->parseCurrentBlock();
261 $checked = $a_set[
"obligatory"] ?
" checked=\"checked\"" :
"";
262 $obligatory =
"<input type=\"checkbox\" name=\"obligatory[" .
263 $a_set[
"question_id"] .
"]\" value=\"1\"" . $checked .
" />";
264 } elseif ($a_set[
"obligatory"]) {
265 $obligatory = $this->
ui->renderer()->render(
266 $this->
ui->factory()->symbol()->icon()->custom(
ilUtil::getImagePath(
"icon_checked.svg"), $this->
lng->txt(
"question_obligatory"))
269 $this->tpl->setVariable(
"OBLIGATORY", $obligatory);
272 $this->tpl->setVariable(
'CBOX_ID', $a_set[
"question_id"]);
274 $this->tpl->setVariable(
'QUESTION_ID', $a_set[
"question_id"]);
279 $this->editable = $value;
289 $this->writeAccess = $value;
setWriteAccess(bool $value)
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...
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
__construct(object $a_parent_obj, string $a_parent_cmd, bool $a_write_access=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setResetCommand(string $a_val, string $a_caption="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
ILIAS UI Factory $ui_factory
static _getQuestionTypeName(string $type_tag)
Return the translation for a given question type.
ILIAS SurveyQuestionPool Editing EditManager $edit_manager
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
setDefaultOrderDirection(string $a_defaultorderdirection)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getGUIClassNameForId(int $a_q_id)
__construct(Container $dic, ilPlugin $plugin)
static _getQuestiontypes()
Get all available question types.
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
addMultiCommand(string $a_cmd, string $a_text)
ILIAS UI Renderer $renderer
setPrefix(string $a_prefix)