5 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
20 function __construct($a_parent_obj, $a_parent_cmd, $a_profile)
24 $this->profile = $a_profile;
26 $this->
setData($this->profile->getAssignedUsers());
27 $this->
setTitle($lng->txt(
"skmg_assigned_users"));
30 $this->
addColumn($this->lng->txt(
"lastname"),
"lastname");
31 $this->
addColumn($this->lng->txt(
"firstname"),
"firstname");
32 $this->
addColumn($this->lng->txt(
"login"),
"login");
36 $this->
setRowTemplate(
"tpl.profile_user_row.html",
"Services/Skill");
49 $this->tpl->setVariable(
"LASTNAME", $a_set[
"lastname"]);
50 $this->tpl->setVariable(
"FIRSTNAME", $a_set[
"firstname"]);
51 $this->tpl->setVariable(
"LOGIN", $a_set[
"login"]);
52 $this->tpl->setVariable(
"ID", $a_set[
"id"]);