4 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
27 $this->
addColumn($this->lng->txt(
"login"),
"login",
"33%");
28 $this->
addColumn($this->lng->txt(
"firstname"),
"firstname",
"33%");
29 $this->
addColumn($this->lng->txt(
"lastname"),
"lastname",
"33%");
31 $this->
setFormAction($ilCtrl->getFormAction($this->parent_obj));
32 $this->
setRowTemplate(
"tpl.rep_search_usr_result_row.html",
"Services/Search");
33 $this->
setTitle($this->lng->txt(
'search_results'));
35 $this->
setId(
"user_table");
38 $this->
enable(
'select_all');
48 if(!count($a_commands))
64 $this->tpl->setVariable(
"VAL_LOGIN", $user[
"login"]);
65 $this->tpl->setVariable(
"VAL_FIRSTNAME", $user[
"firstname"]);
66 $this->tpl->setVariable(
"VAL_LASTNAME", $user[
"lastname"]);
67 $this->tpl->setVariable(
"VAL_ID", $user[
"id"]);
77 include_once
'./Services/User/classes/class.ilObjUser.php';