ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilOrgUnitUserAssignmentTableGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
5 
10 {
11 
15  protected $ilOrgUnitPosition;
19  protected $ctrl;
23  protected $parent_obj;
24 
25 
34  {
35  $this->parent_obj = $parent_obj;
36  $this->ilOrgUnitPosition = $position;
37  $this->ctrl = $GLOBALS["DIC"]->ctrl();
38  $this->setPrefix("il_orgu_" . $position->getId());
39  $this->setFormName('il_orgu_' . $position->getId());
40  $this->setId("il_orgu_" . $position->getId());
41 
42  parent::__construct($parent_obj, $parent_cmd);
43 
44  $this->setFormAction($this->ctrl->getFormAction($parent_obj));
45  $this->setTableHeaders();
46  $this->setTopCommands(true);
47  $this->setEnableHeader(true);
48  $this->setShowRowsSelector(true);
49  $this->setShowTemplates(false);
50  $this->setEnableHeader(true);
51  $this->setEnableTitle(true);
52  $this->setTitle($position->getTitle());
53  $this->setRowTemplate("tpl.staff_row.html", "Modules/OrgUnit");
54  $this->parseData();
55  }
56 
57 
58  protected function setTableHeaders()
59  {
60  $this->addColumn($this->lng->txt("login"), "login");
61  $this->addColumn($this->lng->txt("firstname"), "first_name");
62  $this->addColumn($this->lng->txt("lastname"), "last_name");
63  $this->addColumn($this->lng->txt("action"));
64  }
65 
66 
67  public function parseData()
68  {
70  ->getAssignements($_GET["ref_id"], $this->ilOrgUnitPosition));
71 
72  $this->setData($data);
73  }
74 
75 
81  protected function parseRows($user_ids)
82  {
83  $data = array();
84  foreach ($user_ids as $user_id) {
85  $set = array();
86  $this->setRowForUser($set, $user_id);
87  $data[] = $set;
88  }
89 
90  return $data;
91  }
92 
93 
98  protected function setRowForUser(&$set, $user_id)
99  {
100  $user = new ilObjUser($user_id);
101  $set["login"] = $user->getLogin();
102  $set["first_name"] = $user->getFirstname();
103  $set["last_name"] = $user->getLastname();
104  $set["user_object"] = $user;
105  $set["user_id"] = $user_id;
106  }
107 
108 
112  public function fillRow($set)
113  {
114  global $DIC;
115 
116  $lng = $DIC['lng'];
117  $ilAccess = $DIC['ilAccess'];
118  $this->tpl->setVariable("LOGIN", $set["login"]);
119  $this->tpl->setVariable("FIRST_NAME", $set["first_name"]);
120  $this->tpl->setVariable("LAST_NAME", $set["last_name"]);
121  // $this->ctrl->setParameterByClass(ilLearningProgressGUI::class, "obj_id", $set["user_id"]);
122  // $this->ctrl->setParameterByClass(ilObjOrgUnitGUI::class, "obj_id", $set["user_id"]);
123  $this->ctrl->setParameterByClass(ilOrgUnitUserAssignmentGUI::class, 'usr_id', $set["user_id"]);
124  $this->ctrl->setParameterByClass(ilOrgUnitUserAssignmentGUI::class, 'position_id', $this->ilOrgUnitPosition->getId());
125  $selection = new ilAdvancedSelectionListGUI();
126  $selection->setListTitle($lng->txt("Actions"));
127  $selection->setId("selection_list_user_lp_" . $set["user_id"]);
128 
129  if ($ilAccess->checkAccess("view_learning_progress", "", $_GET["ref_id"])
132  ) {
133  $this->ctrl->setParameterByClass(ilLearningProgressGUI::class, 'obj_id', $set["user_id"]);
134  $selection->addItem($lng->txt("show_learning_progress"), "show_learning_progress", $this->ctrl->getLinkTargetByClass(array(
135  ilAdministrationGUI::class,
136  ilObjOrgUnitGUI::class,
137  ilLearningProgressGUI::class,
138  ), ""));
139  }
140  if ($ilAccess->checkAccess("write", "", $_GET["ref_id"])) {
141  $this->addActions($selection);
142  }
143  $this->tpl->setVariable("ACTIONS", $selection->getHTML());
144  }
145 
146 
150  protected function addActions(&$selection)
151  {
152  $selection->addItem($this->lng->txt("remove"), "delete_from_employees", $this->ctrl->getLinkTargetByClass(ilOrgUnitUserAssignmentGUI::class, ilOrgUnitUserAssignmentGUI::CMD_CONFIRM));
153  }
154 }
$_GET["client_id"]
setShowTemplates($a_value)
Toggle templates.
setId($a_val)
Set id.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
static _enabledUserRelatedData()
check wether user related tracking is enabled or not
static _enabledLearningProgress()
check wether learing progress is enabled or not
setTopCommands($a_val)
Set top commands (display command buttons on top of table, too)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Definition: PEAR.php:64
setPrefix($a_prefix)
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct(BaseCommands $parent_obj, $parent_cmd, ilOrgUnitPosition $position)
ilOrgUnitUserAssignmentTableGUI constructor.
setFormName($a_formname="")
Set Form name.
__construct(Container $dic, ilPlugin $plugin)
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.
$DIC
Definition: xapitoken.php:46
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
setEnableHeader($a_enableheader)
Set Enable Header.
setEnableTitle($a_enabletitle)
Set Enable Title.
Class ilOrgUnitUserAssignmentTableGUI.