4 include_once
'./Services/Table/classes/class.ilTable2GUI.php';
23 public function __construct($a_parent_obj, $a_parent_cmd, $a_team_id)
27 $this->team_id = $a_team_id;
31 $this->
setTitle($this->lng->txt(
"exc_team_log"));
33 $this->
addColumn($this->lng->txt(
"date"),
"tstamp");
34 $this->
addColumn($this->lng->txt(
"user"),
"user");
35 $this->
addColumn($this->lng->txt(
"details"),
"details");
40 $this->
setRowTemplate(
"tpl.exc_team_log_row.html",
"Modules/Exercise");
41 $this->
setFormAction($ilCtrl->getFormAction($a_parent_obj, $a_parent_cmd));
55 switch($item[
"action"])
58 $mess =
"create_team";
66 $mess =
"remove_member";
74 $mess =
"remove_file";
78 $details = $this->lng->txt(
"exc_team_log_".$mess);
81 $details = sprintf($details, $item[
"details"]);
85 "tstamp" => $item[
"tstamp"],
103 $this->tpl->setVariable(
"TSTAMP", $date);
104 $this->tpl->setVariable(
"TXT_USER", $a_set[
"user"]);
105 $this->tpl->setVariable(
"TXT_DETAILS", $a_set[
"details"]);