ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectConsumerTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
31  protected bool $editable = true;
32  protected \ILIAS\DI\Container $dic;
33 
34  public function __construct(?object $a_parent_obj, string $a_parent_cmd)
35  {
36  global $DIC;
37  $this->dic = $DIC;
38 
39  $this->setId("ltioconsumer");
40 
41  parent::__construct($a_parent_obj, $a_parent_cmd);
42 
43  $this->setLimit(9999);
44 
45  $this->setTitle($DIC->language()->txt("lti_object_consumer"));
46 
47  $this->addColumn($DIC->language()->txt("active"), "active");
48  $this->addColumn($DIC->language()->txt("title"), "title");
49  $this->addColumn($DIC->language()->txt("description"), "description");
50  $this->addColumn($DIC->language()->txt("prefix"), "prefix");
51  $this->addColumn($DIC->language()->txt("in_use"), "language");
52  $this->addColumn($DIC->language()->txt("objects"), "objects");
53  $this->addColumn($DIC->language()->txt("role"), "role");
54  $this->addColumn($DIC->language()->txt("actions"), "");
55 
56  $this->setFormAction($DIC->ctrl()->getFormAction($a_parent_obj));
57  $this->setRowTemplate("tpl.lti_consumer_list_row.html", "components/ILIAS/LTIProvider");
58  $this->setDefaultOrderField("title");
59 
60  $this->getItems();
61  }
62 
67  public function setEditable(bool $a_status): void
68  {
69  $this->editable = $a_status;
70  }
71 
75  public function isEditable(): bool
76  {
77  return $this->editable;
78  }
79 
83  public function getItems(): void
84  {
85  $dataConnector = new ilLTIDataConnector();
86 
87  $consumer_data = $dataConnector->getGlobalToolConsumerSettings();
88  $result = array();
89  foreach ($consumer_data as $cons) {
90  $result[] = array(
91  "id" => $cons->getExtConsumerId(),
92  "title" => $cons->getTitle(),
93  "description" => $cons->getDescription(),
94  "prefix" => $cons->getPrefix(),
95  "language" => $cons->getLanguage(),
96  "role" => $cons->getRole(),
97  "active" => $cons->getActive()
98  );
99  }
100 
101  $this->setData($result);
102  }
103 
107  protected function fillRow(array $a_set): void
108  {
109  $this->dic->ctrl()->setParameter($this->getParentObject(), "cid", $a_set["id"]);
110 
111  $this->tpl->setVariable("TXT_TITLE", $a_set["title"]);
112  $this->tpl->setVariable("TXT_DESCRIPTION", $a_set["description"]);
113  $this->tpl->setVariable("TXT_PREFIX", $a_set["prefix"]);
114  // $this->tpl->setVariable("TXT_KEY", $a_set["key"]);
115  // $this->tpl->setVariable("TXT_SECRET", $a_set["secret"]);
116  $this->tpl->setVariable("TXT_LANGUAGE", $a_set["language"]);
117  $obj_types = ilObjLTIAdministration::getActiveObjectTypes($a_set["id"]);
118  if ($obj_types) {
119  foreach ($obj_types as $obj_type) {
120  $this->tpl->setCurrentBlock("objects");
121  $this->tpl->setVariable("OBJECTS", $GLOBALS['DIC']->language()->txt('objs_' . $obj_type));
122  $this->tpl->parseCurrentBlock();
123  }
124  } else {
125  $this->tpl->setVariable("NO_OBJECTS", "-");
126  }
127 
128  $role = ilObjectFactory::getInstanceByObjId($a_set['role'], false);
129  if ($role instanceof ilObjRole) {
130  $this->tpl->setVariable('TXT_ROLE', $role->getTitle());
131  } else {
132  $this->tpl->setVariable('TXT_ROLE', '');
133  }
134 
135  if ($a_set["active"]) {
136  $this->tpl->setVariable("TXT_ACTIVE", $this->dic->language()->txt('active'));
137  $label_status = $this->dic->language()->txt("deactivate");
138  } else {
139  $this->tpl->setVariable("TXT_ACTIVE", $this->dic->language()->txt('inactive'));
140  $label_status = $this->dic->language()->txt("activate");
141  }
142 
143  if ($this->isEditable()) {
144  $edit_url = $this->dic->ctrl()->getLinkTarget($this->getParentObject(), "editConsumer");
145  $delete_url = $this->dic->ctrl()->getLinkTarget($this->getParentObject(), "deleteLTIConsumer");
146  $status_url = $this->dic->ctrl()->getLinkTarget($this->getParentObject(), "changeStatusLTIConsumer");
147  $actions = [];
148  $actions[] = $this->dic->ui()->factory()->link()->standard($this->lng->txt('edit'), $edit_url);
149  $actions[] = $this->dic->ui()->factory()->link()->standard($this->lng->txt('delete'), $delete_url);
150  $actions[] = $this->dic->ui()->factory()->link()->standard($label_status, $status_url);
151  $dropdown = $this->dic->ui()->factory()->dropdown()->standard($actions)->withLabel($this->lng->txt('actions'));
152  $this->tpl->setVariable("ACTION", $this->dic->ui()->renderer()->render($dropdown));
153  }
154  }
155 }
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)
$GLOBALS["DIC"]
Definition: wac.php:53
setDefaultOrderField(string $a_defaultorderfield)
TableGUI class for LTI consumer listing.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
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.
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
static getActiveObjectTypes(int $a_consumer_id)