ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilSkillProfileUserTableGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("./Services/Table/classes/class.ilTable2GUI.php");
6 
16 {
20  protected $ctrl;
21 
25  protected $access;
26 
30  public function __construct($a_parent_obj, $a_parent_cmd, $a_profile, $a_write_permission = false)
31  {
32  global $DIC;
33 
34  $this->ctrl = $DIC->ctrl();
35  $this->lng = $DIC->language();
36  $this->access = $DIC->access();
37  $ilCtrl = $DIC->ctrl();
38  $lng = $DIC->language();
39  $ilAccess = $DIC->access();
40  $lng = $DIC->language();
41 
42  $this->profile = $a_profile;
43  parent::__construct($a_parent_obj, $a_parent_cmd);
44  $this->setData($this->profile->getAssignedUsers());
45  $this->setTitle($lng->txt("skmg_assigned_users"));
46 
47  $this->addColumn("", "", "1px", true);
48  $this->addColumn($this->lng->txt("lastname"), "lastname");
49  $this->addColumn($this->lng->txt("firstname"), "firstname");
50  $this->addColumn($this->lng->txt("login"), "login");
51  // $this->addColumn($this->lng->txt("actions"));
52 
53  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
54  $this->setRowTemplate("tpl.profile_user_row.html", "Services/Skill");
55 
56  if ($a_write_permission) {
57  $this->addMultiCommand("confirmUserRemoval", $lng->txt("remove"));
58  }
59  //$this->addCommandButton("", $lng->txt(""));
60  }
61 
65  protected function fillRow($a_set)
66  {
67  $lng = $this->lng;
68 
69  $this->tpl->setVariable("LASTNAME", $a_set["lastname"]);
70  $this->tpl->setVariable("FIRSTNAME", $a_set["firstname"]);
71  $this->tpl->setVariable("LOGIN", $a_set["login"]);
72  $this->tpl->setVariable("ID", $a_set["id"]);
73  }
74 }
global $DIC
Definition: saml.php:7
TableGUI class for skill profile user assignment.
global $ilCtrl
Definition: ilias.php:18
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
Class ilTable2GUI.
addMultiCommand($a_cmd, $a_text)
Add Command button.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
__construct($a_parent_obj, $a_parent_cmd, $a_profile, $a_write_permission=false)
Constructor.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
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.