3 declare(strict_types=1);
43 public function __construct(
object $a_parent_obj,
string $a_parent_cmd)
47 $this->
ctrl = $DIC->ctrl();
48 $this->
lng = $DIC->language();
49 $this->tree = $DIC->repositoryTree();
50 $this->objDefinition = $DIC[
'objDefinition'];
51 $this->
ui = $DIC->ui()->factory();
52 $this->renderer = $DIC->ui()->renderer();
54 $this->
setId(
"sess_materials_" . $a_parent_obj->getCurrentObject()->getId());
58 $this->parent_ref_id = $this->tree->getParentId($a_parent_obj->getCurrentObject()->getRefId());
59 $this->parent_object_id = $a_parent_obj->getCurrentObject()->getId();
63 $this->
setRowTemplate(
"tpl.session_materials_row.html",
"Modules/Session");
69 $this->
addColumn($this->
lng->txt(
"crs_materials"),
"title",
"90%");
70 $this->
addColumn($this->
lng->txt(
"sess_is_assigned"),
"sorthash",
"5");
78 $this->
lng->loadLanguageModule(
'sess');
83 $this->material_items = $a_set;
93 $this->container_ref_id = $a_set;
108 $already_assigned_ref_ids = [];
110 $already_assigned_ref_ids[] =
$ref_id;
112 $node[
"sorthash"] =
'0' . $node[
"title"];
117 if (in_array($node[
'ref_id'], $already_assigned_ref_ids)) {
122 if ($node[
'child'] == $this->parent_ref_id ||
124 in_array($node[
'type'], array(
'sess',
'itgr',
'rolf'))) {
128 if (!empty($already_assigned_ref_ids)) {
129 $node[
"sorthash"] =
'0' . $node[
"title"];
132 $materials[] = $node;
137 if (!empty($this->
filter)) {
145 $data_filtered = $a_data;
148 if (isset($this->
filter[
"title"]) && $this->
filter[
'title'] !==
'') {
149 foreach ($data_filtered as
$key => $material) {
150 $title = $material[
"title"];
151 if (stripos(
$title, $this->
filter[
"title"]) ===
false) {
152 unset($data_filtered[
$key]);
158 if (isset($this->
filter[
'type']) && $this->
filter[
'type'] !==
'') {
159 foreach ($data_filtered as
$key => $material) {
160 $type = $material[
"type"];
163 unset($data_filtered[
$key]);
169 if (isset($this->
filter[
"status"]) && $this->
filter[
'status'] !==
'') {
171 $assigned_items =
new ilEventItems($this->parent_object_id);
172 $assigned_items = $assigned_items->getItems();
174 if ($this->
filter[
"status"] ==
"assigned") {
175 foreach ($data_filtered as
$key => $material) {
176 if (!in_array($material[
"ref_id"], $assigned_items)) {
177 unset($data_filtered[
$key]);
180 } elseif ($this->
filter[
"status"] ==
"notassigned") {
181 foreach ($data_filtered as
$key => $material) {
182 if (in_array($material[
"ref_id"], $assigned_items)) {
183 unset($data_filtered[
$key]);
189 return $data_filtered;
197 protected function fillRow(array $a_set): void
200 $this->tpl->setVariable(
'IMG_ALT', $this->
lng->txt(
'obj_' . $a_set[
'type']));
202 $this->tpl->setVariable(
"VAL_POSTNAME",
"items");
203 $this->tpl->setVariable(
"VAL_ID", $a_set[
'ref_id']);
205 $this->tpl->setVariable(
"COLL_TITLE", $a_set[
'title']);
207 if (strlen((
string) $a_set[
'description'])) {
208 $this->tpl->setVariable(
"COLL_DESC", (
string) $a_set[
'description']);
211 $ass_glyph = $this->
ui->symbol()->icon()->custom(
213 $this->
lng->txt(
"assigned")
215 $this->tpl->setVariable(
"ASSIGNED_IMG_OK", $this->renderer->render($ass_glyph));
219 $path->enableDisplayCut(
false);
220 $path->enableTextOnly(
false);
221 $path->enableHideLeaf(
false);
222 $this->tpl->setVariable(
"COLL_PATH",
$path->getPath($this->getContainerRefId(), (
int) $a_set[
'ref_id']));
233 foreach ($items as $item) {
234 $all_types[] = $item[
"type"];
236 return array_values(array_unique($all_types));
243 $ti->setMaxLength(64);
246 $ti->readFromSession();
247 $this->
filter[
"title"] = $ti->getValue();
253 $types[0] = $this->
lng->txt(
'sess_filter_all_types');
254 foreach ($filter_types as
$type) {
255 $types[
"$type"] = $this->
lng->txt(
"obj_" . $type);
259 $select->setOptions($types);
261 $select->readFromSession();
262 $this->
filter[
"type"] = $select->getValue();
267 $status[
"notassigned"] = $this->
lng->txt(
"sess_filter_not_assigned");
268 $status[
"assigned"] = $this->
lng->txt(
"assigned");
271 $select_status->setOptions($status);
273 $select_status->readFromSession();
274 $this->
filter[
'status'] = $select_status->getValue();
__construct(object $a_parent_obj, string $a_parent_cmd)
Creates a path for a start and endnode.
getNodeData(int $a_node_id, ?int $a_tree_pk=null)
get all information of a node.
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
ILIAS UI Renderer $renderer
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
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)
setFormName(string $a_name="")
parses the objects.xml it handles the xml-description of all ilias objects
setContainerRefId(int $a_set)
filterData(array $a_data)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
setMaterialItems(array $a_set)
isSideBlock(string $obj_name)
Check, whether object type is a side block.
ilObjectDefinition $objDefinition
__construct(Container $dic, ilPlugin $plugin)
setMaterials(array $a_materials)
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)
getSubTree(array $a_node, bool $a_with_data=true, array $a_type=[])
get all nodes in the subtree under specified node
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
typesAvailable()
Get object types available in this specific session.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)