ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjectConsumerTableGUI.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
29 {
30  protected bool $editable = true;
31  protected \ILIAS\DI\Container $dic;
32 
33  public function __construct(?object $a_parent_obj, string $a_parent_cmd)
34  {
35  global $DIC;
36  $this->dic = $DIC;
37 
38  $this->setId("ltioconsumer");
39 
40  parent::__construct($a_parent_obj, $a_parent_cmd);
41 
42  $this->setLimit(9999);
43 
44  $this->setTitle($DIC->language()->txt("lti_object_consumer"));
45 
46  $this->addColumn($DIC->language()->txt("active"), "active");
47  $this->addColumn($DIC->language()->txt("title"), "title");
48  $this->addColumn($DIC->language()->txt("description"), "description");
49  $this->addColumn($DIC->language()->txt("prefix"), "prefix");
50  $this->addColumn($DIC->language()->txt("in_use"), "language");
51  $this->addColumn($DIC->language()->txt("objects"), "objects");
52  $this->addColumn($DIC->language()->txt("role"), "role");
53  $this->addColumn($DIC->language()->txt("actions"), "");
54 
55  $this->setFormAction($DIC->ctrl()->getFormAction($a_parent_obj));
56  $this->setRowTemplate("tpl.lti_consumer_list_row.html", "Services/LTI");
57  $this->setDefaultOrderField("title");
58 
59  $this->getItems();
60  }
61 
66  public function setEditable(bool $a_status): void
67  {
68  $this->editable = $a_status;
69  }
70 
74  public function isEditable(): bool
75  {
76  return $this->editable;
77  }
78 
82  public function getItems(): void
83  {
85 
87  $result = array();
88  foreach ($consumer_data as $cons) {
89  $result[] = array(
90  "id" => $cons->getExtConsumerId(),
91  "title" => $cons->getTitle(),
92  "description" => $cons->getDescription(),
93  "prefix" => $cons->getPrefix(),
94  "language" => $cons->getLanguage(),
95  "role" => $cons->getRole(),
96  "active" => $cons->getActive()
97  );
98  }
99 
100  $this->setData($result);
101  }
102 
106  protected function fillRow(array $a_set): void
107  {
108  $this->dic->ctrl()->setParameter($this->getParentObject(), "cid", $a_set["id"]);
109 
110  $this->tpl->setVariable("TXT_TITLE", $a_set["title"]);
111  $this->tpl->setVariable("TXT_DESCRIPTION", $a_set["description"]);
112  $this->tpl->setVariable("TXT_PREFIX", $a_set["prefix"]);
113 // $this->tpl->setVariable("TXT_KEY", $a_set["key"]);
114 // $this->tpl->setVariable("TXT_SECRET", $a_set["secret"]);
115  $this->tpl->setVariable("TXT_LANGUAGE", $a_set["language"]);
116  $obj_types = ilObjLTIAdministration::getActiveObjectTypes($a_set["id"]);
117  if ($obj_types) {
118  foreach ($obj_types as $obj_type) {
119  $this->tpl->setCurrentBlock("objects");
120  $this->tpl->setVariable("OBJECTS", $GLOBALS['DIC']->language()->txt('objs_' . $obj_type));
121  $this->tpl->parseCurrentBlock();
122  }
123  } else {
124  $this->tpl->setVariable("NO_OBJECTS", "-");
125  }
126 
127  $role = ilObjectFactory::getInstanceByObjId($a_set['role'], false);
128  if ($role instanceof ilObjRole) {
129  $this->tpl->setVariable('TXT_ROLE', $role->getTitle());
130  } else {
131  $this->tpl->setVariable('TXT_ROLE', '');
132  }
133 
134  if ($a_set["active"]) {
135  $this->tpl->setVariable("TXT_ACTIVE", $this->dic->language()->txt('active'));
136  $label_status = $this->dic->language()->txt("deactivate");
137  } else {
138  $this->tpl->setVariable("TXT_ACTIVE", $this->dic->language()->txt('inactive'));
139  $label_status = $this->dic->language()->txt("activate");
140  }
141 
142  if ($this->isEditable()) {
143  $list = new ilAdvancedSelectionListGUI();
144  $list->setId((string) $a_set["id"]);
145  $list->setListTitle($this->dic->language()->txt("actions"));
146 
147  $edit_url = $this->dic->ctrl()->getLinkTarget($this->getParentObject(), "editConsumer");
148  $delete_url = $this->dic->ctrl()->getLinkTarget($this->getParentObject(), "deleteLTIConsumer");
149  $status_url = $this->dic->ctrl()->getLinkTarget($this->getParentObject(), "changeStatusLTIConsumer");
150  $list->addItem($this->dic->language()->txt("edit"), "", $edit_url);
151  $list->addItem($this->dic->language()->txt("delete"), "", $delete_url);
152  $list->addItem($label_status, "", $status_url);
153 
154  $this->tpl->setVariable("ACTION", $list->getHTML());
155  }
156  }
157 }
Class ilObjRole.
setData(array $a_data)
setFormAction(string $a_form_action, bool $a_multipart=false)
setEditable(bool $a_status)
Set editable.
setId(string $a_val)
global $DIC
Definition: feed.php:28
setDefaultOrderField(string $a_defaultorderfield)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Definition: PEAR.php:64
getGlobalToolConsumerSettings()
Get global consumer settings.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
ilLTIDataConnector $dataConnector
Data connector object.
Definition: System.php:64
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
__construct(?object $a_parent_obj, string $a_parent_cmd)
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
isEditable()
Check if write permission given.
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
fillRow(array $a_set)
Fill a single data row.
static getActiveObjectTypes(int $a_consumer_id)