4 require_once
'Services/Table/classes/class.ilTable2GUI.php';
67 $this->access = $DIC[
'ilAccess'];
68 $this->ui_factory = $DIC[
'ui.factory'];
69 $this->ui_renderer = $DIC[
'ui.renderer'];
70 $this->definitionEditModeEnabled =
false;
71 $this->questionAmountColumnEnabled =
false;
76 $this->taxonomyLabelTranslater = $translater;
109 $this->tpl->setCurrentBlock(
'col_selection_checkbox');
111 $this->tpl->parseCurrentBlock();
113 $this->tpl->setCurrentBlock(
'col_actions');
114 $this->tpl->setVariable(
'ACTIONS_HTML', $this->
getActionsHTML($set[
'def_id']));
115 $this->tpl->parseCurrentBlock();
117 $this->tpl->setCurrentBlock(
'col_order_checkbox');
122 $this->tpl->parseCurrentBlock();
126 $this->tpl->setCurrentBlock(
'col_order_checkbox');
127 $this->tpl->setVariable(
'ORDER_INPUT_HTML', $set[
'sequence_position']);
128 $this->tpl->parseCurrentBlock();
136 $set[
'question_amount']
139 $questionAmountHTML = $set[
'question_amount'];
142 $this->tpl->setCurrentBlock(
'col_question_amount');
143 $this->tpl->setVariable(
'QUESTION_AMOUNT_INPUT_HTML', $questionAmountHTML);
144 $this->tpl->parseCurrentBlock();
147 $this->tpl->setVariable(
149 $this->buildPossiblyLinkedQuestonPoolTitle(
156 $set[
'source_pool_label'],
161 $this->tpl->setVariable(
'TAXONOMY_FILTER', $this->taxonomyLabelTranslater->getTaxonomyFilterLabel($set[
'taxonomy_filter'],
'<br />'));
162 #$this->tpl->setVariable('FILTER_TAXONOMY', $this->getTaxonomyTreeLabel($set['filter_taxonomy'])); 163 #$this->tpl->setVariable('FILTER_TAX_NODE', $this->getTaxonomyNodeLabel($set['filter_tax_node'])); 164 $this->tpl->setVariable(
'LIFECYCLE_FILTER', $this->taxonomyLabelTranslater->getLifecycleFilterLabel($set[
'lifecycle_filter']));
165 $this->tpl->setVariable(
'TYPE_FILTER', $this->taxonomyLabelTranslater->getTypeFilterLabel($set[
'type_filter']));
171 return '<input type="checkbox" value="' . $sourcePoolDefinitionId .
'" name="src_pool_def_ids[]" />';
176 return '<input type="text" size="2" value="' . $defOrderNumber .
'" name="def_order[' . $srcPoolDefId .
']" />';
181 return '<input type="text" size="4" value="' . $questionAmount .
'" name="quest_amount[' . $srcPoolDefId .
']" />';
186 require_once
'Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php';
190 $selectionList->setId(
'sourcePoolDefinitionActions_' . $sourcePoolDefinitionId);
191 $selectionList->setListTitle($this->lng->txt(
"actions"));
193 $selectionList->addItem($this->lng->txt(
'edit'),
'', $this->
getEditHref($sourcePoolDefinitionId));
194 $selectionList->addItem($this->lng->txt(
'delete'),
'', $this->
getDeleteHref($sourcePoolDefinitionId));
196 return $selectionList->getHTML();
201 $href = $this->ctrl->getLinkTarget(
213 $href = $this->ctrl->getLinkTarget(
225 return ($sequencePosition * 10);
230 if (!$taxonomyTreeId) {
234 return $this->taxonomyLabelTranslater->getTaxonomyTreeLabel($taxonomyTreeId);
239 if (!$taxonomyNodeId) {
243 return $this->taxonomyLabelTranslater->getTaxonomyNodeLabel($taxonomyNodeId);
250 $this->
setTitle($this->lng->txt(
'tst_src_quest_pool_def_list_table'));
252 $this->
setRowTemplate(
"tpl.il_tst_rnd_quest_set_src_pool_def_row.html",
"Modules/Test");
257 $this->
enable(
'select_all');
263 $this->
setFormAction($this->ctrl->getFormAction($this->parent_obj));
271 $this->
setId(self::IDENTIFIER);
287 $this->
addColumn(
'',
'select',
'1%',
true);
288 $this->
addColumn(
'',
'order',
'1%',
true);
292 $this->
addColumn($this->lng->txt(
"position"));
296 $this->
addColumn($this->lng->txt(
"tst_source_question_pool"),
'source_question_pool',
'');
298 $this->
addColumn($this->lng->txt(
"tst_filter_taxonomy") .
' / ' . $this->lng->txt(
"tst_filter_tax_node"),
'tst_filter_taxonomy',
'');
299 #$this->addColumn($this->lng->txt("tst_filter_taxonomy"),'tst_filter_taxonomy', ''); 300 #$this->addColumn($this->lng->txt("tst_filter_tax_node"),'tst_filter_tax_node', ''); 301 $this->
addColumn($this->lng->txt(
"qst_lifecycle"),
'tst_filter_lifecycle',
'');
302 $this->
addColumn($this->lng->txt(
"tst_filter_question_type"),
'tst_filter_question_type',
'');
306 $this->
addColumn($this->lng->txt(
"tst_question_amount"),
'tst_question_amount',
'');
310 $this->
addColumn($this->lng->txt(
"actions"),
'actions',
'');
318 foreach ($sourcePoolDefinitionList as $sourcePoolDefinition) {
323 $set[
'def_id'] = $sourcePoolDefinition->getId();
324 $set[
'sequence_position'] = $sourcePoolDefinition->getSequencePosition();
325 $set[
'source_pool_label'] = $sourcePoolDefinition->getPoolTitle();
327 if ($this->showMappedTaxonomyFilter) {
329 $set[
'taxonomy_filter'] = $sourcePoolDefinition->getMappedTaxonomyFilter();
332 $set[
'taxonomy_filter'] = $sourcePoolDefinition->getOriginalTaxonomyFilter();
334 #$set['filter_taxonomy'] = $sourcePoolDefinition->getMappedFilterTaxId(); 335 #$set['filter_tax_node'] = $sourcePoolDefinition->getMappedFilterTaxNodeId(); 336 $set[
'lifecycle_filter'] = $sourcePoolDefinition->getLifecycleFilter();
337 $set[
'type_filter'] = $sourcePoolDefinition->getTypeFilter();
339 $set[
'question_amount'] = $sourcePoolDefinition->getQuestionAmount();
340 $set[
'ref_id'] = $sourcePoolDefinition->getPoolRefId();
349 foreach ($sourcePoolDefinitionList as $sourcePoolDefinition) {
353 $sourcePoolDefinition->setSequencePosition($orderNumber);
357 $sourcePoolDefinition->setQuestionAmount($questionAmount);
359 $sourcePoolDefinition->setQuestionAmount(null);
366 return (
int)
$_POST[
'def_order'][$definition->
getId()];
371 return (
int)
$_POST[
'quest_amount'][$definition->
getId()];
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
__construct(ilCtrl $ctrl, ilLanguage $lng, $parentGUI, $parentCMD)
setQuestionAmountColumnEnabled($questionAmountColumnEnabled)
This class provides processing control methods.
getDefinitionOrderInputHTML($srcPoolDefId, $defOrderNumber)
getDeleteHref($sourcePoolDefinitionId)
setExternalSegmentation($a_val)
Set external segmentation.
const CMD_SHOW_EDIT_SRC_POOL_DEF_FORM
getTaxonomyNodeLabel($taxonomyNodeId)
$questionAmountColumnEnabled
isDefinitionEditModeEnabled()
const CMD_DELETE_SINGLE_SRC_POOL_DEF
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
fetchOrderNumberParameter(ilTestRandomQuestionSetSourcePoolDefinition $definition)
setTaxonomyFilterLabelTranslater(ilTestTaxonomyFilterLabelTranslater $translater)
static appendUrlParameterString($a_url, $a_par, $xml_style=false)
append URL parameter string ("par1=value1&par2=value2...") to given URL string
setDefinitionEditModeEnabled($definitionEditModeEnabled)
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.
getTaxonomyTreeLabel($taxonomyTreeId)
addMultiCommand($a_cmd, $a_text)
Add Command button.
enable($a_module_name)
enables particular modules of table
isQuestionAmountColumnEnabled()
setRowTemplate($a_template, $a_template_dir="")
Set row template.
const CMD_SAVE_SRC_POOL_DEF_LIST
getOrderNumberForSequencePosition($sequencePosition)
getQuestionAmountInputHTML($srcPoolDefId, $questionAmount)
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)
setShowMappedTaxonomyFilter($showMappedTaxonomyFilter)
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.
fetchQuestionAmountParameter(ilTestRandomQuestionSetSourcePoolDefinition $definition)
getEditHref($sourcePoolDefinitionId)
getActionsHTML($sourcePoolDefinitionId)
$showMappedTaxonomyFilter
getSelectionCheckboxHTML($sourcePoolDefinitionId)
$definitionEditModeEnabled
setLimit($a_limit=0, $a_default_limit=0)
const CMD_DELETE_MULTI_SRC_POOL_DEFS