ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilItemGroupItemsTableGUI.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2011 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5include_once("./Services/Table/classes/class.ilTable2GUI.php");
6
16{
20 function __construct($a_parent_obj, $a_parent_cmd)
21 {
22 global $lng, $ilCtrl, $tree, $objDefinition;
23
24 $this->lng = $lng;
25 $this->ctrl = $ilCtrl;
26 $this->tree = $tree;
27 $this->obj_def = $objDefinition;
28
29 include_once 'Modules/ItemGroup/classes/class.ilItemGroupItems.php';
30 $this->item_group_items = new ilItemGroupItems($a_parent_obj->object->getRefId());
31 $this->items = $this->item_group_items->getItems();
32
33 parent::__construct($a_parent_obj, $a_parent_cmd);
34 $this->setLimit(9999);
35
36 $this->getMaterials();
37 $this->setTitle($lng->txt("itgr_assigned_materials"));
38
39 $this->addColumn("", "", "1px", true);
40 $this->addColumn($this->lng->txt("itgr_item"));
41 $this->addColumn($this->lng->txt("itgr_assignment"));
42 $this->setSelectAllCheckbox("items[]");
43
44 $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
45 $this->setRowTemplate("tpl.item_group_items_row.html", "Modules/ItemGroup");
46
47 $this->addCommandButton("saveItemAssignment", $lng->txt("save"));
48 }
49
56 function getMaterials()
57 {
58 $materials = array();
59 $items = $this->item_group_items->getAssignableItems();
60
61 foreach($items as $item)
62 {
63 $item["sorthash"] = (int)(!in_array($item['ref_id'], $this->items)).$item["title"];
64 $materials[] = $item;
65 }
66
67 $materials = ilUtil::sortArray($materials, "sorthash", "asc");
68 $this->setData($materials);
69 }
70
74 protected function fillRow($a_set)
75 {
76 global $lng;
77
78 $this->tpl->setVariable("ITEM_REF_ID", $a_set["child"]);
79 $this->tpl->setVariable("TITLE", $a_set["title"]);
80 $this->tpl->setVariable("IMG", ilUtil::img(
81 ilObject::_getIcon($a_set["obj_id"], "tiny"), "", "", "", "", "", "ilIcon"));
82
83 if (in_array($a_set["child"], $this->items))
84 {
85 $this->tpl->setVariable("IMG_ASSIGNED", ilUtil::img(
86 ilUtil::getImagePath("icon_ok.svg")));
87 $this->tpl->setVariable("CHECKED", "checked='checked'");
88 }
89 else
90 {
91 $this->tpl->setVariable("IMG_ASSIGNED", ilUtil::img(
92 ilUtil::getImagePath("icon_not_ok.svg")));
93 }
94 }
95
96}
97?>
__construct($a_parent_obj, $a_parent_cmd)
Constructor.
static _getIcon($a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
Class ilTable2GUI.
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.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setData($a_data)
set table data @access public
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setLimit($a_limit=0, $a_default_limit=0)
set max.
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
static sortArray($array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
static img($a_src, $a_alt="", $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
global $ilCtrl
Definition: ilias.php:18
global $lng
Definition: privfeed.php:40