ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilCourseObjectiveMaterialAssignmentTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=0);
20 
27 {
28  private int $objective_id = 0;
30 
32 
33  public function __construct(object $a_parent_obj, ilObject $a_course_obj, int $a_objective_id)
34  {
35  global $DIC;
36 
37  $this->objectDefinition = $DIC['objDefinition'];
38  $this->objective_id = $a_objective_id;
39 
40  $this->setId('tbl_crs_obj_mat_assignment');
41  parent::__construct($a_parent_obj, 'materialAssignment');
42  $this->lng->loadLanguageModule('crs');
43 
44  $this->setFormName('assignments');
45  $this->addColumn('', 'f', "1");
46  $this->addColumn($this->lng->txt('type'), 'type', "1px");
47  $this->addColumn($this->lng->txt('title'), 'title', '99%');
48  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
49  $this->setRowTemplate("tpl.crs_objective_list_materials_row.html", "Modules/Course");
50  $this->setDefaultOrderField('title');
51  $this->setShowRowsSelector(true);
52  $this->setNoEntriesText($this->lng->txt('crs_no_objective_lms_found'));
53  $this->addCommandButton('updateMaterialAssignment', $this->lng->txt('crs_wiz_next'));
54  $this->initObjectiveAssignments();
55  }
56 
57  protected function fillRow(array $a_set): void
58  {
59  foreach ($a_set['sub'] as $sub_data) {
60  // Indentation
61  for ($i = $sub_data['depth']; $i > 1; $i--) {
62  $this->tpl->touchBlock('begin_depth');
63  $this->tpl->touchBlock('end_depth');
64  }
65 
66  $this->tpl->setCurrentBlock('chapter');
67 
68  if ($this->objective_lm->isChapterAssigned($a_set['id'], $sub_data['id'])) {
69  $this->tpl->setVariable('CHAP_CHECKED', 'checked="checked"');
70  }
71 
72  $this->tpl->setVariable('CHAPTER_TITLE', ilLMObject::_lookupTitle($sub_data['id']));
73  $this->tpl->setVariable('CHAP_ID', $a_set['id'] . '_' . $sub_data['id']);
74  $this->tpl->setVariable('CHAP_TYPE_IMG', ilObject::_getIcon((int) $sub_data['id'], "tiny", $sub_data['type']));
75  $this->tpl->setVariable('CHAP_TYPE_ALT', $this->lng->txt('obj_' . $sub_data['type']));
76  $this->tpl->parseCurrentBlock();
77  }
78  if (count($a_set['sub']) > 0) {
79  $this->tpl->setVariable('TXT_CHAPTER', $this->lng->txt('objs_st'));
80  }
81 
82  $this->tpl->setVariable('VAL_ID', $a_set['id']);
83 
84  if ($this->objective_lm->isAssigned($a_set['id'])) {
85  $this->tpl->setVariable('VAL_CHECKED', 'checked="checked"');
86  }
87 
88  $this->tpl->setVariable('ROW_TYPE_IMG', ilObject::_getIcon((int) $a_set['obj_id'], "tiny", $a_set['type']));
89  $this->tpl->setVariable('ROW_TYPE_ALT', $this->lng->txt('obj_' . $a_set['type']));
90 
91  $this->tpl->setVariable('VAL_TITLE', $a_set['title']);
92  if (strlen($a_set['description']) !== 0) {
93  $this->tpl->setVariable('VAL_DESC', $a_set['description']);
94  }
95  }
96 
97  public function parse(array $a_assignable): void
98  {
99  $materials = [];
100  foreach ($a_assignable as $node) {
101  // no side blocks here
102  if ($this->objectDefinition->isSideBlock($node['type'])) {
103  continue;
104  }
105 
106  $tmp_data = array();
107  $subobjects = array();
108  if ($node['type'] == 'lm') {
109  // Chapters and pages
110  foreach ($chapters = $this->getAllSubObjects($node['child']) as $chapter => $chapter_data) {
111  $sub['title'] = ilLMObject::_lookupTitle($chapter);
112  $sub['id'] = $chapter;
113  $sub['depth'] = $chapter_data['depth'];
114  $sub['type'] = $chapter_data['type'];
115 
116  $subobjects[] = $sub;
117  }
118  }
119  $tmp_data['sub'] = $subobjects;
120  $tmp_data['title'] = $node['title'];
121  $tmp_data['description'] = $node['description'];
122  $tmp_data['type'] = $node['type'];
123  $tmp_data['id'] = $node['child'];
124  $tmp_data['obj_id'] = $node['obj_id'];
125  $materials[] = $tmp_data;
126  }
127  $this->setData($materials);
128  }
129 
130  protected function getAllSubObjects(int $a_ref_id): array
131  {
132  $tree = new ilTree(ilObject::_lookupObjId($a_ref_id));
133  $tree->setTableNames('lm_tree', 'lm_data');
134  $tree->setTreeTablePK("lm_id");
135  $chapter = [];
136  foreach ($tree->getSubTree($tree->getNodeData($tree->getRootId())) as $node) {
137  if ($node['type'] == 'st' || $node['type'] == 'pg') {
138  $depth = $node['depth'] - 1;
139  $child = $node['child'];
140  $chapter[$child]['depth'] = $depth;
141  $chapter[$child]['type'] = $node['type'];
142  }
143  }
144  return $chapter;
145  }
146 
147  protected function initObjectiveAssignments(): void
148  {
149  $this->objective_lm = new ilCourseObjectiveMaterials($this->objective_id);
150  }
151 }
setNoEntriesText(string $a_text)
setData(array $a_data)
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
TableGUI for material assignments of course objectives.
setFormName(string $a_name="")
setId(string $a_val)
static _lookupObjId(int $ref_id)
static _lookupTitle(int $a_obj_id)
global $DIC
Definition: feed.php:28
parses the objects.xml it handles the xml-description of all ilias objects
class ilCourseObjectiveMaterials
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
__construct(Container $dic, ilPlugin $plugin)
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)
$i
Definition: metadata.php:41
__construct(object $a_parent_obj, ilObject $a_course_obj, int $a_objective_id)