ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilSCORMTrackingItemsPerScoTableGUI.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';
5
13{
14 private $obj_id = 0;
15
19 public function __construct($a_obj_id, $a_parent_obj, $a_parent_cmd)
20 {
21 $this->obj_id = $a_obj_id;
22
23 $this->setId('sco_trs_usr_' . $this->obj_id);
24 parent::__construct($a_parent_obj, $a_parent_cmd);
25 }
26
31 public function getObjId()
32 {
33 return $this->obj_id;
34 }
35
39 public function parse()
40 {
41 $this->initTable();
42
43 $scos = $this->getParentObject()->object->getTrackedItems();
44
45 $data = array();
46 foreach ($scos as $row) {
47 $tmp = array();
48 $tmp['title'] = $row->getTitle();
49 $tmp['id'] = $row->getId();
50
51 $data[] = $tmp;
52 }
53 $this->setData($data);
54 }
55
56
61 protected function fillRow($a_set)
62 {
63 global $DIC;
64 $ilCtrl = $DIC['ilCtrl'];
65
66 $this->tpl->setVariable('TXT_ITEM_TITLE', $a_set['title']);
67 $ilCtrl->setParameter($this->getParentObject(), 'obj_id', $a_set['id']);
68 $this->tpl->setVariable('LINK_ITEM', $ilCtrl->getLinkTarget($this->getParentObject(), 'showTrackingItemSco'));
69 }
70
74 protected function initTable()
75 {
76 global $DIC;
77 $ilCtrl = $DIC['ilCtrl'];
78
79
80 $this->setFormAction($ilCtrl->getFormAction($this->getParentObject()));
81 $this->setRowTemplate('tpl.scorm_track_items_sco.html', 'Modules/ScormAicc');
82 $this->setTitle($this->lng->txt('cont_tracking_items'));
83
84 $this->addColumn($this->lng->txt('title'), 'title', '100%');
85 }
86}
An exception for terminatinating execution or to throw for unit testing.
__construct($a_obj_id, $a_parent_obj, $a_parent_cmd)
Constructor.
Class ilTable2GUI.
getParentObject()
Get parent object.
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.
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.
setId($a_val)
Set id.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
global $DIC
Definition: goto.php:24
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc