ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilAccessKeyTableGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/Table/classes/class.ilTable2GUI.php");
5 
15 {
16 
20  function __construct($a_parent_obj, $a_parent_cmd)
21  {
22  global $ilCtrl, $lng, $ilAccess, $lng;
23 
24  parent::__construct($a_parent_obj, $a_parent_cmd);
25 
26  // get keys
27  include_once("./Services/Accessibility/classes/class.ilAccessKey.php");
28 
29  $keys = ilAccessKey::getKeys();
30  $data = array();
31  foreach ($keys as $f => $k)
32  {
33  $data[] = array("func_id" => $f, "access_key" => $k);
34  }
35  $this->setData($data);
36  $this->setTitle($lng->txt("acc_access_keys"));
37  $this->setLimit(9999);
38 
39  $this->addColumn($this->lng->txt("acc_component"), "", "");
40  $this->addColumn($this->lng->txt("acc_function"), "", "");
41  $this->addColumn($this->lng->txt("acc_access_key"), "", "");
42 
43  $this->setEnableHeader(true);
44  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
45  $this->setRowTemplate("tpl.access_key_row.html", "Services/Accessibility");
46  $this->disable("footer");
47  $this->setEnableTitle(true);
48 
49 // $this->addMultiCommand("", $lng->txt(""));
50  if ($ilAccess->checkAccess("write", "", $_GET["ref_id"]))
51  {
52  $this->addCommandButton("saveAccessKeys", $lng->txt("save"));
53  }
54  }
55 
59  protected function fillRow($a_set)
60  {
61  global $lng;
62 
63  $this->tpl->setVariable("VAL_COMPONENT", ilAccessKey::getComponentNames($a_set["func_id"]));
64  $this->tpl->setVariable("VAL_FUNCTION", ilAccessKey::getFunctionName($a_set["func_id"]));
65  $this->tpl->setVariable("FUNC_ID", $a_set["func_id"]);
66  $this->tpl->setVariable("VAL_ACC_KEY", ilUtil::prepareFormOutput($a_set["access_key"]));
67  }
68 
69 }
70 ?>