19 declare(strict_types=1);
31 public function __construct(
int $a_obj_id, ?
object $a_parent_obj,
string $a_parent_cmd)
33 $this->obj_id = $a_obj_id;
35 $this->
setId(
'sco_trs_usr_' . $this->obj_id);
49 $this->user_id = $a_usr_id;
66 foreach ($user_data as $row) {
76 protected function fillRow(array $a_set): void
79 $ilCtrl = $DIC->ctrl();
81 $this->tpl->setVariable(
'VAL_TITLE', $a_set[
'title']);
84 $ilCtrl->setParameter($this->
getParentObject(),
'obj_id', $a_set[
'sco_id']);
85 $this->tpl->setVariable(
'LINK_SCO', $ilCtrl->getLinkTarget($this->getParentObject(),
'showTrackingItemPerUser'));
87 $this->tpl->setVariable(
'VAL_STATUS', $a_set[
'status']);
88 $this->tpl->setVariable(
'VAL_TIME', $a_set[
'time']);
89 $this->tpl->setVariable(
'VAL_SCORE', $a_set[
'score']);
95 $ilCtrl = $DIC->ctrl();
98 $this->
setFormAction($ilCtrl->getFormAction($this->getParentObject()));
99 $this->
setRowTemplate(
'tpl.scorm_track_item.html',
'components/ILIAS/ScormAicc');
102 $this->
addColumn($this->
lng->txt(
'title'),
'title',
'35%');
103 $this->
addColumn($this->
lng->txt(
'cont_status'),
'status',
'25%');
104 $this->
addColumn($this->
lng->txt(
'cont_time'),
'time',
'20%');
105 $this->
addColumn($this->
lng->txt(
'cont_score'),
'score',
'20%');
parse()
Parse table content.
__construct(int $a_obj_id, ?object $a_parent_obj, string $a_parent_cmd)
setFormAction(string $a_form_action, bool $a_multipart=false)
static _lookupFullname(int $a_user_id)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
setUserId(int $a_usr_id)
Set current user id.
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)
fillRow(array $a_set)
Fill row template.