ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilLPCollectionSettingsTableGUI.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once './Services/Table/classes/class.ilTable2GUI.php';
5require_once('./Services/Repository/classes/class.ilObjectPlugin.php');
6
14{
15 private $node_id;
16 private $mode;
17
23 public function __construct($a_parent_obj, $a_parent_cmd = "", $a_node_id, $a_mode)
24 {
25 parent::__construct($a_parent_obj, $a_parent_cmd);
26 $this->setId('lpobjs_'.$this->getNode());
27
28 $this->setShowRowsSelector(false);
29
30 $this->node_id = $a_node_id;
31 $this->mode = $a_mode;
32 }
33
38 public function getNode()
39 {
40 return $this->node_id;
41 }
42
43 public function getMode()
44 {
45 return $this->mode;
46 }
47
51 public function parse(ilLPCollection $a_collection)
52 {
53 $this->setData($a_collection->getTableGUIData($this->getNode()));
54 $this->initTable();
55
56 // grouping actions
59 {
60 $this->addMultiCommand('releaseMaterials', $this->lng->txt('trac_release_materials'));
61
62 foreach($this->row_data as $item)
63 {
64 if($item["grouped"])
65 {
66 $this->addCommandButton('saveObligatoryMaterials', $this->lng->txt('trac_group_materials_save'));
67 break;
68 }
69 }
70 }
71 }
72
77 protected function fillRow($a_set)
78 {
79 global $objDefinition, $ilAccess;
80
81 include_once './Services/Link/classes/class.ilLink.php';
82
83 $this->tpl->setCurrentBlock('item_row');
84 $this->tpl->setVariable('ITEM_ID', $a_set['id']);
85 $this->tpl->setVariable('COLL_TITLE', $a_set['title']);
86 $this->tpl->setVariable('COLL_DESC',$a_set['description']);
87
88 if($objDefinition->isPluginTypeName($a_set["type"]))
89 {
90 $alt = ilObjectPlugin::lookupTxtById($a_set['type'], "obj_".$a_set['type']);
91 }
92 else
93 {
94 $alt = $this->lng->txt('obj_' . $a_set['type']);
95 }
96 $this->tpl->setVariable('ALT_IMG', $alt);
97 $this->tpl->setVariable('TYPE_IMG', ilObject::_getIcon("", "tiny", $a_set['type']));
98
101 {
102 if($a_set['ref_id'])
103 {
104 $this->tpl->setVariable('COLL_LINK', ilLink::_getLink($a_set['ref_id'], $a_set['type']));
105 $this->tpl->setVariable('COLL_FRAME', ilFrameTargetInfo::_getFrame('MainContent', $a_set['type']));
106
107 include_once './Services/Tree/classes/class.ilPathGUI.php';
108 $path = new ilPathGUI();
109 $this->tpl->setVariable('COLL_PATH', $this->lng->txt('path').': '.$path->getPath($this->getNode(),$a_set['ref_id']));
110
111 $mode_suffix = '';
112 if($a_set['grouped'] ||
113 $a_set['group_item'])
114 {
115 // #14941
116 $mode_suffix = '_INLINE';
117
118 if(!$a_set['group_item'])
119 {
120 $this->tpl->setVariable("COLL_MODE", "");
121 }
122 }
123 include_once './Services/Tracking/classes/class.ilLearningProgressAccess.php';
124 if(ilLearningProgressAccess::checkPermission('edit_learning_progress', $a_set['ref_id']))
125 {
126 $lp_settings_link = ilLink::_getLink($a_set['ref_id'], $a_set['type'], array('gotolp'=>1));
127 $a_set["mode"] = '<a href="'.$lp_settings_link.'">'.$a_set['mode'].'</a>'; // :TODO: il_ItemAlertProperty?
128 }
129
130 $mode = $a_set['mode_id'];
132 {
133 $this->tpl->setVariable("COLL_MODE".$mode_suffix, $a_set['mode']);
134 }
135 else
136 {
137 $this->tpl->setVariable("COLL_MODE".$mode_suffix, "");
138 $this->tpl->setVariable("COLL_MODE_DEACTIVATED".$mode_suffix, $a_set['mode']);
139 }
140 if($a_set["anonymized"])
141 {
142 $this->tpl->setVariable("ANONYMIZED".$mode_suffix, $this->lng->txt('trac_anonymized_info_short'));
143 }
144
145 if($mode_suffix)
146 {
147 $this->tpl->setVariable("COLL_MODE_LABEL", $this->lng->txt("trac_mode"));
148 }
149 }
150 }
151 else
152 {
153 $this->tpl->setVariable('COLL_LINK', $a_set['url']);
154
156 {
157 // handle tlt settings
158 $this->tpl->setCurrentBlock("tlt");
159 $this->tpl->setVariable("TXT_MONTH",$this->lng->txt('md_months'));
160 $this->tpl->setVariable("TXT_DAYS",$this->lng->txt('md_days'));
161 $this->tpl->setVariable("TXT_TIME",$this->lng->txt('md_time'));
162 $this->tpl->setVariable("TLT_HINT", '(hh:mm)');
163
164 // seconds to units
165 $mon = floor($a_set["tlt"]/(60*60*24*30));
166 $tlt = $a_set["tlt"]%(60*60*24*30);
167 $day = floor($tlt/(60*60*24));
168 $tlt = $tlt%(60*60*24);
169 $hr = floor($tlt/(60*60));
170 $tlt = $tlt%(60*60);
171 $min = floor($tlt/60);
172
173 $options = array();
174 for($i = 0;$i <= 24;$i++)
175 {
176 $options[$i] = sprintf('%02d',$i);
177 }
178 $this->tpl->setVariable("SEL_MONTHS",
179 ilUtil::formSelect($mon,'tlt['.$a_set['id'].'][mo]',$options,false,true));
180
181 for($i = 0;$i <= 31;$i++)
182 {
183 $options[$i] = sprintf('%02d',$i);
184 }
185 $this->tpl->setVariable("SEL_DAYS",
186 ilUtil::formSelect($day,'tlt['.$a_set['id'].'][d]',$options,false,true));
187
188 $this->tpl->setVariable("SEL_TLT",ilUtil::makeTimeSelect('tlt['.$a_set['id'].']',
189 true,$hr,$min,null,false));
190
191 $this->tpl->parseCurrentBlock();
192 }
193 }
194
195 // Assigned ?
196 $this->tpl->setVariable("ASSIGNED_IMG_OK", $a_set['status']
197 ? ilUtil::getImagePath('icon_ok.svg')
198 : ilUtil::getImagePath('icon_not_ok.svg')
199 );
200 $this->tpl->setVariable("ASSIGNED_STATUS", $a_set['status']
201 ? $this->lng->txt('trac_assigned')
202 : $this->lng->txt('trac_not_assigned')
203 );
204 $this->tpl->parseCurrentBlock();
205
206
207 // Parse grouped items
208 foreach((array) $a_set['grouped'] as $item)
209 {
210 $item['group_item'] = true;
211 $this->fillRow($item);
212 }
213
214 // show num obligatory info
215 if(count($a_set['grouped']))
216 {
217 $this->tpl->setCurrentBlock('num_passed_items');
218 $this->tpl->setVariable('MIN_PASSED_TXT', $this->lng->txt('trac_min_passed'));
219 $this->tpl->setVariable('NUM_OBLIGATORY', $a_set['num_obligatory']);
220 $this->tpl->setVariable('GRP_ID', $a_set['grouping_id']);
221 $this->tpl->parseCurrentBlock();
222 }
223 }
224
225 protected function initTable()
226 {
227 global $ilCtrl;
228
229 $this->setFormAction($ilCtrl->getFormAction($this->getParentObject()));
230 switch($this->getMode())
231 {
234 $this->setRowTemplate('tpl.lp_collection_row.html', 'Services/Tracking');
235 $this->setTitle($this->lng->txt('trac_lp_determination'));
236 $this->setDescription($this->lng->txt('trac_lp_determination_info_crs'));
237 break;
238
240 $this->setRowTemplate('tpl.lp_collection_row.html', 'Services/Tracking');
241 $this->setTitle($this->lng->txt('trac_lp_determination_tutor'));
242 $this->setDescription($this->lng->txt('trac_lp_determination_info_crs_tutor'));
243 break;
244
246 $this->setRowTemplate('tpl.lp_collection_scorm_row.html', 'Services/Tracking');
247 $this->setTitle($this->lng->txt('trac_lp_determination'));
248 $this->setDescription($this->lng->txt('trac_lp_determination_info_sco'));
249 break;
250
252 $this->setRowTemplate('tpl.lp_collection_subitem_row.html', 'Services/Tracking');
253 $this->setTitle($this->lng->txt('trac_lp_determination'));
254 $this->setDescription($this->lng->txt('trac_lp_determination_info_crs'));
255 $this->lng->loadLanguageModule("meta");
256
257 $this->addCommandButton('updateTLT', $this->lng->txt('save'));
258 break;
259
261 $this->setRowTemplate('tpl.lp_collection_subitem_row.html', 'Services/Tracking');
262 $this->setTitle($this->lng->txt('trac_lp_determination'));
263 $this->setDescription($this->lng->txt('trac_lp_determination_info_mob'));
264 break;
265 }
266
267 $this->addColumn('','','1px');
268 $this->addColumn($this->lng->txt('item'), 'title', '50%');
269
274 {
275 $this->addColumn($this->lng->txt('trac_mode'), 'mode');
276 }
278 {
279 $this->addColumn($this->lng->txt('meta_typical_learning_time'), 'tlt');
280 }
281
283 {
284 $this->addMultiCommand('assign', $this->lng->txt('trac_collection_assign'));
285 $this->addMultiCommand('deassign', $this->lng->txt('trac_collection_deassign'));
286 $this->addColumn($this->lng->txt('trac_determines_learning_progress'), 'status');
287 }
288 else
289 {
290 $this->addMultiCommand('assign', $this->lng->txt('trac_manual_display'));
291 $this->addMultiCommand('deassign', $this->lng->txt('trac_manual_no_display'));
292 $this->addColumn($this->lng->txt('trac_manual_is_displayed'), 'status');
293 }
294
295 $this->enable('select_all');
296 $this->setSelectAllCheckbox('item_ids');
297
299 {
300 $this->addMultiCommand('groupMaterials', $this->lng->txt('trac_group_materials'));
301 }
302 }
303}
304
305?>
sprintf('%.4f', $callTime)
$path
Definition: aliased.php:25
An exception for terminatinating execution or to throw for unit testing.
static _getFrame($a_class, $a_type='')
Get content frame name.
parse(ilLPCollection $a_collection)
Read and parse items.
__construct($a_parent_obj, $a_parent_cmd="", $a_node_id, $a_mode)
Constructor.
getNode()
Get node id of current learning progress item.
LP collection base class.
static checkPermission($a_permission, $a_ref_id, $a_user_id=null)
wrapper for rbac access checks
static lookupTxtById($plugin_id, $lang_var)
static _lookupObjId($a_id)
static _getIcon($a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
Creates a path for a start and endnode.
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.
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
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.
addMultiCommand($a_cmd, $a_text)
Add Command button.
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
setId($a_val)
Set id.
setDescription($a_val)
Set description.
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.
enable($a_module_name)
enables particular modules of table
static formSelect($selected, $varname, $options, $multiple=false, $direct_text=false, $size="0", $style_class="", $attribs="", $disabled=false)
Builds a select form field with options and shows the selected option first.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static makeTimeSelect($prefix, $short=true, $hour="", $minute="", $second="", $a_use_default=true, $a_further_options=array())
Creates a combination of HTML selects for time inputs.
global $ilCtrl
Definition: ilias.php:18
if(!is_array($argv)) $options