4 include_once(
'./Services/Table/classes/class.ilTable2GUI.php');
5 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionPreviewGUI.php';
6 require_once
'Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php';
46 $this->
setId(
"qpl_confirm_del_" . $a_parent_obj->object->getRefId());
48 $this->
setId(
"qpl_qst_brows_" . $a_parent_obj->object->getRefId());
67 $this->
setStyle(
'table',
'fullwidth');
70 $this->
addColumn($this->lng->txt(
"title"),
'title',
'');
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"),
'ttype',
'');
79 if (strcmp(
$c,
'points') == 0) {
80 $this->
addColumn($this->lng->txt(
"points"),
'points',
'',
false,
'ilCenterForced');
82 if (strcmp(
$c,
'statistics') == 0) {
83 $this->
addColumn($this->lng->txt(
'statistics'),
'',
'');
85 if (strcmp(
$c,
'author') == 0) {
86 $this->
addColumn($this->lng->txt(
"author"),
'author',
'');
88 if (
$c ==
'lifecycle') {
89 $this->
addColumn($this->lng->txt(
'qst_lifecycle'),
'lifecycle',
'');
92 $this->
addColumn($this->lng->txt(
"ass_comments"),
'comments',
'');
94 if (strcmp(
$c,
'created') == 0) {
95 $this->
addColumn($this->lng->txt(
"create_date"),
'created',
'');
97 if (strcmp(
$c,
'tstamp') == 0) {
98 $this->
addColumn($this->lng->txt(
"last_update"),
'tstamp',
'');
100 if (strcmp(
$c,
'working_time') == 0) {
101 $this->
addColumn($this->lng->txt(
"working_time"),
'working_time',
'');
104 $this->
addColumn($this->lng->txt(
'actions'),
'');
107 $this->
addColumn($this->lng->txt(
"title"),
'title',
'');
109 if (strcmp(
$c,
'description') == 0) {
110 $this->
addColumn($this->lng->txt(
"description"),
'description',
'');
112 if (strcmp(
$c,
'type') == 0) {
113 $this->
addColumn($this->lng->txt(
"question_type"),
'ttype',
'');
120 $this->
addCommandButton(
'confirmDeleteQuestions', $this->lng->txt(
'confirm'));
121 $this->
addCommandButton(
'cancelDeleteQuestions', $this->lng->txt(
'cancel'));
130 $this->
setRowTemplate(
"tpl.il_as_qpl_questionbrowser_row.html",
"Modules/TestQuestionPool");
132 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
144 $this->
enable(
'select_all');
153 $notesUrl = $this->ctrl->getLinkTargetByClass(
154 array(
"ilcommonactiondispatchergui",
"ilnotegui"),
189 foreach ($questionData as $key =>
$data) {
191 $this->parent_obj->object->getId(),
192 $data[
'question_id'],
197 if ($this->filter[
'commented'] && !$numComments) {
198 unset($questionData[$key]);
202 $questionData[$key][
'comments'] = $numComments;
213 $cols[
"description"] = array(
214 "txt" =>
$lng->txt(
"description"),
217 $cols[
"type"] = array(
218 "txt" =>
$lng->txt(
"question_type"),
221 if (!$this->confirmdelete) {
222 $cols[
"points"] = array(
223 "txt" =>
$lng->txt(
"points"),
226 $cols[
"statistics"] = array(
227 "txt" =>
$lng->txt(
"statistics"),
230 $cols[
"author"] = array(
231 "txt" =>
$lng->txt(
"author"),
234 $cols[
'lifecycle'] = array(
235 'txt' =>
$lng->txt(
'qst_lifecycle'),
239 $cols[
"comments"] = array(
240 "txt" =>
$lng->txt(
"comments"),
244 $cols[
"created"] = array(
245 "txt" =>
$lng->txt(
"create_date"),
248 $cols[
"tstamp"] = array(
249 "txt" =>
$lng->txt(
"last_update"),
252 $cols[
"working_time"] = array(
253 "txt" =>
$lng->txt(
"working_time"),
267 $rbacreview = $DIC[
'rbacreview'];
271 include_once(
"./Services/Form/classes/class.ilTextInputGUI.php");
273 $ti->setMaxLength(64);
274 $ti->setValidationRegexp(
'/^[^%]+$/is');
277 $ti->readFromSession();
278 $this->filter[
"title"] = $ti->getValue();
282 $ti->setMaxLength(64);
284 $ti->setValidationRegexp(
'/^[^%]+$/is');
286 $ti->readFromSession();
287 $this->filter[
"description"] = $ti->getValue();
289 if (!$this->confirmdelete) {
292 $ti->setMaxLength(64);
294 $ti->setValidationRegexp(
'/^[^%]+$/is');
296 $ti->readFromSession();
297 $this->filter[
"author"] = $ti->getValue();
301 $lifecycleOptions = array_merge(
302 array(
'' => $this->lng->txt(
'qst_lifecycle_filter_all')),
305 $lifecycleInp =
new ilSelectInputGUI($this->lng->txt(
'qst_lifecycle'),
'lifecycle');
306 $lifecycleInp->setOptions($lifecycleOptions);
308 $lifecycleInp->readFromSession();
309 $this->filter[
'lifecycle'] = $lifecycleInp->getValue();
312 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
313 include_once(
"./Modules/TestQuestionPool/classes/class.ilObjQuestionPool.php");
316 $options[
""] =
$lng->txt(
'filter_all_question_types');
317 foreach ($types as $translation => $row) {
318 $options[$row[
'type_tag']] = $translation;
322 $si->setOptions($options);
324 $si->readFromSession();
325 $this->filter[
"type"] =
$si->getValue();
327 if ($this->parent_obj->object->getShowTaxonomies()) {
328 require_once
'Services/Taxonomy/classes/class.ilTaxSelectInputGUI.php';
330 foreach ($this->taxIds as $taxId) {
331 if ($taxId == $this->parent_obj->object->getNavTaxonomyId()) {
335 $postvar =
"tax_$taxId";
339 $inp->readFromSession();
340 $this->filter[$postvar] = $inp->getValue();
348 $comments->readFromSession();
349 $this->filter[
'commented'] = $comments->getChecked();
355 foreach ($this->column as $key => $column) {
356 if (strcmp($column[
'text'], $this->lng->txt(
"points")) == 0) {
357 $this->column[$key][
'text'] = $this->lng->txt(
"points") .
" (" . $this->totalPoints .
")";
358 } elseif (strcmp($column[
'text'], $this->lng->txt(
"working_time")) == 0) {
359 $this->column[$key][
'text'] = $this->lng->txt(
"working_time") .
" (" . $this->totalWorkingTime .
")";
362 parent::fillHeader();
376 $ilAccess = $DIC[
'ilAccess'];
377 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
378 include_once
"./Modules/TestQuestionPool/classes/class.assQuestionGUI.php";
380 $this->ctrl->setParameterByClass(
"ilAssQuestionPageGUI",
"q_id",
$data[
"question_id"]);
381 $this->ctrl->setParameterByClass(
"ilAssQuestionPreviewGUI",
"q_id",
$data[
"question_id"]);
382 $this->ctrl->setParameterByClass($class,
"q_id",
$data[
"question_id"]);
386 $actions->setId(
'qst' .
$data[
"question_id"]);
387 $actions->setListTitle($this->lng->txt(
'actions'));
389 if (!$this->confirmdelete) {
390 $this->tpl->setCurrentBlock(
'checkbox');
391 $this->tpl->setVariable(
'CB_QUESTION_ID',
$data[
"question_id"]);
392 $this->tpl->parseCurrentBlock();
394 if (
$data[
"complete"] == 0) {
395 $this->tpl->setCurrentBlock(
"qpl_warning");
397 $this->tpl->setVariable(
"ALT_WARNING", $this->lng->txt(
"warning_question_not_complete"));
398 $this->tpl->setVariable(
"TITLE_WARNING", $this->lng->txt(
"warning_question_not_complete"));
399 $this->tpl->parseCurrentBlock();
401 $points =
$data[
"points"];
404 $this->totalPoints += $points;
407 if (strcmp($c,
'points') == 0) {
408 $this->tpl->setCurrentBlock(
'points');
409 $this->tpl->setVariable(
"QUESTION_POINTS", $points);
410 $this->tpl->parseCurrentBlock();
412 if (strcmp($c,
'statistics') == 0) {
413 $this->tpl->setCurrentBlock(
'statistics');
414 $this->tpl->setVariable(
"LINK_ASSESSMENT", $this->ctrl->getLinkTargetByClass($class,
"assessment"));
415 $this->tpl->setVariable(
"TXT_ASSESSMENT", $this->lng->txt(
"statistics"));
416 include_once
"./Services/Utilities/classes/class.ilUtil.php";
417 $this->tpl->setVariable(
"IMG_ASSESSMENT",
ilUtil::getImagePath(
"assessment.gif",
"Modules/TestQuestionPool"));
418 $this->tpl->parseCurrentBlock();
420 if (strcmp($c,
'author') == 0) {
421 $this->tpl->setCurrentBlock(
'author');
422 $this->tpl->setVariable(
"QUESTION_AUTHOR",
$data[
"author"]);
423 $this->tpl->parseCurrentBlock();
425 if ($c ==
'lifecycle') {
428 $this->tpl->setCurrentBlock(
'lifecycle');
429 $this->tpl->setVariable(
"QUESTION_LIFECYCLE", $lifecycle->getTranslation($this->lng));
430 $this->tpl->parseCurrentBlock();
433 $this->tpl->setCurrentBlock(
'comments');
435 $this->tpl->parseCurrentBlock();
437 if (strcmp($c,
'created') == 0) {
438 $this->tpl->setCurrentBlock(
'created');
440 $this->tpl->parseCurrentBlock();
442 if (strcmp($c,
'tstamp') == 0) {
443 $this->tpl->setCurrentBlock(
'updated');
445 $this->tpl->parseCurrentBlock();
447 if (strcmp($c,
'working_time') == 0) {
448 $this->tpl->setCurrentBlock(
'working_time');
449 $this->tpl->setVariable(
'WORKING_TIME',
$data[
"working_time"]);
450 $this->tpl->parseCurrentBlock();
456 $editHref = $this->ctrl->getLinkTargetByClass(
$data[
'type_tag'] .
'GUI',
'editQuestion');
457 $actions->addItem($this->lng->txt(
'edit_question'),
'', $editHref);
459 $editPageHref = $this->ctrl->getLinkTargetByClass(
'ilAssQuestionPageGUI',
'edit');
460 $actions->addItem($this->lng->txt(
'edit_page'),
'', $editPageHref);
464 $this->ctrl->setParameter($this->parent_obj,
'q_id',
$data[
'question_id']);
465 $moveHref = $this->ctrl->getLinkTarget($this->parent_obj,
'move');
466 $this->ctrl->setParameter($this->parent_obj,
'q_id', null);
467 $actions->addItem($this->lng->txt(
'move'),
'', $moveHref);
469 $this->ctrl->setParameter($this->parent_obj,
'q_id',
$data[
'question_id']);
470 $copyHref = $this->ctrl->getLinkTarget($this->parent_obj,
'copy');
471 $this->ctrl->setParameter($this->parent_obj,
'q_id', null);
472 $actions->addItem($this->lng->txt(
'copy'),
'', $copyHref);
474 $this->ctrl->setParameter($this->parent_obj,
'q_id',
$data[
'question_id']);
475 $deleteHref = $this->ctrl->getLinkTarget($this->parent_obj,
'deleteQuestions');
476 $this->ctrl->setParameter($this->parent_obj,
'q_id', null);
477 $actions->addItem($this->lng->txt(
'delete'),
'', $deleteHref);
481 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionFeedbackEditingGUI.php';
482 $this->ctrl->setParameterByClass(
'ilAssQuestionFeedbackEditingGUI',
'q_id',
$data[
'question_id']);
484 $this->ctrl->setParameterByClass(
'ilAssQuestionFeedbackEditingGUI',
'q_id', null);
485 $actions->addItem($this->lng->txt(
'tst_feedback'),
'', $feedbackHref);
487 $this->ctrl->setParameterByClass(
'ilAssQuestionHintsGUI',
'q_id',
$data[
'question_id']);
489 $this->ctrl->setParameterByClass(
'ilAssQuestionHintsGUI',
'q_id', null);
490 $actions->addItem($this->lng->txt(
'tst_question_hints_tab'),
'', $hintsHref);
495 $this->lng->txt(
'ass_comments'),
507 $this->tpl->setCurrentBlock(
'hidden');
508 $this->tpl->setVariable(
'HIDDEN_QUESTION_ID',
$data[
"question_id"]);
509 $this->tpl->parseCurrentBlock();
513 if (strcmp($c,
'description') == 0) {
514 $this->tpl->setCurrentBlock(
'description');
515 $this->tpl->setVariable(
"QUESTION_COMMENT", (strlen(
$data[
"description"])) ?
$data[
"description"] :
" ");
516 $this->tpl->parseCurrentBlock();
518 if (strcmp($c,
'type') == 0) {
519 $this->tpl->setCurrentBlock(
'type');
521 $this->tpl->parseCurrentBlock();
524 $this->tpl->setVariable(
'QUESTION_ID',
$data[
"question_id"]);
525 if (!$this->confirmdelete) {
527 $this->tpl->setVariable(
'QUESTION_TITLE_LINKED',
$data[
'title']);
528 $this->tpl->setVariable(
'ACTIONS', $actions->getHTML());
530 $this->tpl->setVariable(
'QUESTION_ID_UNLINKED',
$data[
'question_id']);
531 $this->tpl->setVariable(
'QUESTION_TITLE_UNLINKED',
$data[
'title']);
537 $this->editable = $value;
547 $this->writeAccess = $value;
561 if (in_array($column, array(
'points',
'created',
'tstamp',
'comments'))) {
570 if (!$qData[
'comments']) {
576 return "<a class='comment' href='#' onclick=\"return " . $ajaxLink .
"\"> 578 .
"' alt='{$qData['comments']}'><span class='ilHActProp'>{$qData['comments']}</span></a>";
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
static getInstance($identifier)
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
static sumTimesInISO8601FormatH_i_s_Extended($time1, $time2)
setStyle($a_element, $a_style)
static _getGUIClassNameForId($a_q_id)
static _getQuestionTypeName($type_tag)
Return the translation for a given question type tag.
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
static _getNotesOfObject( $a_rep_obj_id, $a_obj_id, $a_obj_type, $a_type=IL_NOTE_PRIVATE, $a_incl_sub=false, $a_filter="", $a_all_public="y", $a_repository_mode=true, $a_sort_ascending=false, $a_news_id=0)
get all notes related to a specific object
static initJavascript($a_ajax_url, $a_type=IL_NOTE_PRIVATE, ilGlobalTemplateInterface $a_main_tpl=null)
Init javascript.
__construct($a_parent_obj, $a_parent_cmd, $a_write_access=false, $confirmdelete=false, $taxIds=array(), $enableCommenting=false)
Constructor.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
const CMD_SHOW_LIST
command constants
const CMD_SHOW
command constants
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setResetCommand($a_val, $a_caption=null)
Set reset filter command.
$questionCommentingEnabled
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
isQuestionCommentingEnabled()
addMultiCommand($a_cmd, $a_text)
Add Command button.
enable($a_module_name)
enables particular modules of table
getCommentsAjaxLink($questionId)
getSelectedColumns()
Get selected columns.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
static buildAjaxHash( $a_node_type, $a_node_id, $a_obj_type, $a_obj_id, $a_sub_type=null, $a_sub_id=null, $a_news_id=0)
Build ajax hash.
isCommentsColumnSelected()
static getListCommentsJSCall($a_hash, $a_update_code=null)
Get list comments js call.
setQuestionCommentingEnabled(bool $questionCommentingEnabled)
setQuestionData($questionData)
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
disable($a_module_name)
diesables particular modules of table
setFormName($a_formname="")
Set Form name.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
static getDraftInstance()
static _getQuestionTypes($all_tags=false, $fixOrder=false, $withDeprecatedTypes=true)
setFilterCommand($a_val, $a_caption=null)
Set filter command.