ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSkillProfileTableGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2011 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  protected $rbacsystem;
31 
35  public function __construct($a_parent_obj, $a_parent_cmd, $a_write_permission = false)
36  {
37  global $DIC;
38 
39  $this->ctrl = $DIC->ctrl();
40  $this->lng = $DIC->language();
41  $this->access = $DIC->access();
42  $this->rbacsystem = $DIC->rbac()->system();
43  $ilCtrl = $DIC->ctrl();
44  $lng = $DIC->language();
45 
46  parent::__construct($a_parent_obj, $a_parent_cmd);
47  $this->setData($this->getProfiles());
48  $this->setTitle($lng->txt("skmg_skill_profiles"));
49 
50  $this->addColumn("", "", "1px", true);
51  $this->addColumn($this->lng->txt("title"), "title");
52  $this->addColumn($this->lng->txt("users"));
53  $this->addColumn($this->lng->txt("roles"));
54  $this->addColumn($this->lng->txt("actions"));
55 
56  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
57  $this->setRowTemplate("tpl.skill_profile_row.html", "Services/Skill");
58 
59  $this->addMultiCommand("exportProfiles", $lng->txt("export"));
60  if ($a_write_permission) {
61  $this->addMultiCommand("confirmDeleteProfiles", $lng->txt("delete"));
62  }
63  //$this->addCommandButton("", $lng->txt(""));
64  }
65 
71  public function getProfiles()
72  {
73  include_once("./Services/Skill/classes/class.ilSkillProfile.php");
75  }
76 
77 
81  protected function fillRow($a_set)
82  {
83  $lng = $this->lng;
85 
86  $this->tpl->setCurrentBlock("cmd");
87  if ($this->rbacsystem->checkAccess('write', $_GET['ref_id'])) {
88  $this->tpl->setVariable("CMD", $lng->txt("edit"));
89  $ilCtrl->setParameter($this->parent_obj, "sprof_id", $a_set["id"]);
90  $this->tpl->setVariable("CMD_HREF", $ilCtrl->getLinkTarget($this->parent_obj, "showUsers"));
91  $ilCtrl->setParameter($this->parent_obj, "sprof_id", $_GET["sprof_id"]);
92  $this->tpl->parseCurrentBlock();
93  }
94  $this->tpl->setVariable("ID", $a_set["id"]);
95  $this->tpl->setVariable("TITLE", $a_set["title"]);
96  $this->tpl->setVariable("NUM_USERS", ilSkillProfile::countUsers($a_set["id"]));
97  $this->tpl->setVariable("NUM_ROLES", ilSkillProfile::countRoles($a_set["id"]));
98  }
99 }
static getProfiles()
Get profiles.
$_GET["client_id"]
TableGUI class for skill profiles.
global $ilCtrl
Definition: ilias.php:18
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
addMultiCommand($a_cmd, $a_text)
Add Command button.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__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.
static countUsers($a_profile_id)
Get assigned users.
$DIC
Definition: xapitoken.php:46
__construct($a_parent_obj, $a_parent_cmd, $a_write_permission=false)
Constructor.
static countRoles(int $a_profile_id)
Count assigned roles of a profile.