4 require_once
'Services/Object/classes/class.ilObjectGUI.php';
6 require_once
'Services/LTI/classes/InternalProvider/class.ilLTIToolConsumer.php';
7 require_once
'Services/LTI/classes/class.ilLTIDataConnector.php';
29 public function __construct($a_data, $a_id, $a_call_by_reference =
true, $a_prepare_output =
true)
35 $GLOBALS[
'DIC']->language()->loadLanguageModule(
'lti');
40 $next_class = $this->ctrl->getNextClass($this);
41 $cmd = $this->ctrl->getCmd();
45 switch ($next_class) {
46 case 'ilpermissiongui':
47 $GLOBALS[
'ilTabs']->activateTab(
'perm_settings');
48 require_once
'Services/AccessControl/classes/class.ilPermissionGUI.php';
50 $this->ctrl->forwardCommand($perm_gui);
53 case 'illticonsumeradministrationgui':
54 $this->tabs_gui->activateTab(
'lti_consuming');
56 $this->ctrl->forwardCommand($gui);
60 $this->tabs_gui->activateTab(
'lti_providing');
61 if (!$cmd || $cmd ==
'view') {
62 $cmd =
'listConsumers';
63 } elseif ($cmd ==
'createconsumer') {
64 $cmd =
"initConsumerForm";
81 if ($rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
82 $this->tabs_gui->addTab(
84 $this->lng->txt(
"lti_providing_tab"),
85 $this->ctrl->getLinkTarget($this,
"listConsumers")
88 $this->tabs_gui->addTab(
90 $this->lng->txt(
"lti_consuming_tab"),
91 $this->ctrl->getLinkTargetByClass(
'ilLTIConsumerAdministrationGUI')
94 if ($DIC->ctrl()->getCmdClass() ==
'ilobjltiadministrationgui') {
99 if ($rbacsystem->checkAccess(
'edit_permission', $this->object->getRefId())) {
100 $this->tabs_gui->addTab(
102 $this->lng->txt(
"perm_settings"),
103 $this->ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm")
113 if (
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
119 $this->tabs_gui->addSubTab(
121 $this->lng->txt(
"consumers"),
122 $this->ctrl->getLinkTarget($this,
"listConsumers")
125 if (
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
126 $this->tabs_gui->addSubTab(
128 $this->lng->txt(
"lti_released_objects"),
129 $this->ctrl->getLinkTarget($this,
"releasedObjects")
139 $this->tabs_gui->activateSubTab(
"settings");
140 $this->tpl->setContent($form->getHTML());
146 require_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
209 $rbacadmin = $DIC[
'rbacadmin'];
212 $role->setTitle(
"il_lti_global_role");
213 $role->setDescription(
"This global role should only contain the permission 'read' for repository and categories.");
215 $rbacadmin->assignRoleToFolder($role->getId(), 8,
'y');
216 $rbacadmin->setProtected(8, $role->getId(),
'y');
217 $rbacadmin->setRolePermission($role->getId(),
'root', [3], 8);
218 $rbacadmin->setRolePermission($role->getId(),
'cat', [3], 8);
219 $rbacadmin->grantPermission($role->getId(), [3], ROOT_FOLDER_ID);
220 $role->changeExistingObjects(
226 ilUtil::sendSuccess($this->lng->txt(
"lti_user_role_created"),
true);
238 $this->tpl->setContent($form->getHTML());
247 $this->tabs_gui->activateSubTab(
"consumers");
249 require_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
253 $ti_title =
new ilTextInputGUI($this->lng->txt(
"title"),
'title');
254 $ti_title->setRequired(
true);
255 $ti_description =
new ilTextInputGUI($this->lng->txt(
"description"),
'description');
256 $ti_prefix =
new ilTextInputGUI($this->lng->txt(
"prefix"),
'prefix');
258 #$ti_key = new ilTextInputGUI($this->lng->txt("lti_consumer_key"), 'key'); 259 #$ti_key->setRequired(true); 260 #$ti_secret = new ilTextInputGUI($this->lng->txt("lti_consumer_secret"), 'secret'); 261 #$ti_secret->setRequired(true); 263 $languages = $this->lng->getInstalledLanguages();
264 $array_lang = array();
265 foreach ($languages as $lang_key) {
269 $si_language =
new ilSelectInputGUI($this->lng->txt(
"language"),
"language");
270 $si_language->setOptions($array_lang);
274 $form->addItem($cb_active);
275 $form->addItem($ti_title);
276 $form->addItem($ti_description);
277 $form->addItem($ti_prefix);
278 #$form->addItem($ti_key); 279 #$form->addItem($ti_secret); 280 $form->addItem($si_language);
285 $valid_obj_types = $this->
object->getLTIObjectTypes();
286 foreach ($valid_obj_types as $obj_type) {
287 $object_name =
$GLOBALS[
'DIC']->language()->txt(
'objs_' . $obj_type);
290 $form->addItem($cb_obj_types);
293 $roles = $this->
object->getLTIRoles();
294 foreach ($roles as $role_id => $role_name) {
295 $options[$role_id] = $role_name;
297 $si_roles =
new ilSelectInputGUI($this->lng->txt(
"gbl_roles_to_users"),
'role');
298 $si_roles->setOptions($options);
299 $form->addItem($si_roles);
301 if ($a_mode ==
'edit') {
302 $form->setFormAction($this->ctrl->getFormAction($this,
'editLTIConsumer'));
303 $form->setTitle($this->lng->txt(
"lti_edit_consumer"));
304 $form->addCommandButton(
"updateLTIConsumer", $this->lng->txt(
"save"));
306 $form->setFormAction($this->ctrl->getFormAction($this,
'createLTIConsumer'));
307 $form->setTitle($this->lng->txt(
"lti_create_consumer"));
308 $form->addCommandButton(
"createLTIConsumer", $this->lng->txt(
"save"));
309 $form->addCommandButton(
'listConsumers', $this->lng->txt(
'cancel'));
324 $consumer_id = $_REQUEST[
"cid"];
325 $ilCtrl->setParameter($this,
"cid", $consumer_id);
328 $ilCtrl->redirect($this,
"listConsumers");
334 $a_form->getItemByPostVar(
"title")->setValue($consumer->getTitle());
335 $a_form->getItemByPostVar(
"description")->setValue($consumer->getDescription());
336 $a_form->getItemByPostVar(
"prefix")->setValue($consumer->getPrefix());
337 $a_form->getItemByPostVar(
"language")->setValue($consumer->getLanguage());
338 $a_form->getItemByPostVar(
"active")->setChecked($consumer->getActive());
339 $a_form->getItemByPostVar(
"role")->setValue($consumer->getRole());
340 $a_form->getItemByPostVar(
"types")->setValue($this->object->getActiveObjectTypes($consumer_id));
342 $tpl->setContent($a_form->getHTML());
354 if ($form->checkInput()) {
358 $consumer->setTitle($form->getInput(
'title'));
359 $consumer->setDescription($form->getInput(
'description'));
360 $consumer->setPrefix($form->getInput(
'prefix'));
361 $consumer->setLanguage($form->getInput(
'language'));
362 $consumer->setActive($form->getInput(
'active'));
363 $consumer->setRole($form->getInput(
'role'));
364 $consumer->saveGlobalToolConsumerSettings($this->dataConnector);
366 $this->
object->saveConsumerObjectTypes(
367 $consumer->getExtConsumerId(),
368 $form->getInput(
'types')
370 ilUtil::sendSuccess($this->lng->txt(
"lti_consumer_created"),
true);
371 $GLOBALS[
'DIC']->ctrl()->redirect($this,
'listConsumers');
374 $form->setValuesByPost();
389 $consumer_id = $_REQUEST[
"cid"];
391 $ilCtrl->redirect($this,
"listConsumers");
394 $ilCtrl->setParameter($this,
"cid", $consumer_id);
398 if ($form->checkInput()) {
399 $consumer->setTitle($form->getInput(
'title'));
400 $consumer->setDescription($form->getInput(
'description'));
401 $consumer->setPrefix($form->getInput(
'prefix'));
402 $consumer->setLanguage($form->getInput(
'language'));
403 $consumer->setActive($form->getInput(
'active'));
404 $consumer->setRole($form->getInput(
'role'));
405 $consumer->saveGlobalToolConsumerSettings($this->dataConnector);
406 $this->
object->saveConsumerObjectTypes($consumer_id, $form->getInput(
'types'));
408 ilUtil::sendSuccess($this->lng->txt(
"lti_consumer_updated"),
true);
421 $consumer_id = $_REQUEST[
'cid'];
424 $ilCtrl->redirect($this,
"listConsumers");
427 $consumer->deleteGlobalToolConsumerSettings($this->dataConnector);
428 ilUtil::sendSuccess($this->lng->txt(
"lti_consumer_deleted"),
true);
429 $GLOBALS[
'DIC']->ctrl()->redirect($this,
'listConsumers');
440 global $ilAccess, $ilToolbar;
443 $ilToolbar->addButton(
444 $this->lng->txt(
'lti_create_consumer'),
445 $this->ctrl->getLinkTarget($this,
'createconsumer')
448 $ilToolbar->addButton(
449 $this->lng->txt(
'lti_create_lti_user_role'),
450 $this->ctrl->getLinkTarget($this,
'createLtiUserRole')
452 $ilToolbar->addText($this->lng->txt(
'lti_user_role_info'));
457 $this->tabs_gui->activateSubTab(
"consumers");
459 include_once
"Services/LTI/classes/Consumer/class.ilLTIConsumerTableGUI.php";
465 $this->tpl->setContent($tbl->getHTML());
476 $consumer_id = $_REQUEST[
"cid"];
479 $ilCtrl->redirect($this,
"listConsumers");
483 if ($consumer->getActive()) {
484 $consumer->setActive(0);
485 $msg =
"lti_consumer_set_inactive";
487 $consumer->setActive(1);
488 $msg =
"lti_consumer_set_active";
490 $consumer->saveGlobalToolConsumerSettings($this->dataConnector);
491 ilUtil::sendSuccess($this->lng->txt($msg),
true);
493 $GLOBALS[
'DIC']->ctrl()->redirect($this,
'listConsumers');
501 $GLOBALS[
'DIC']->tabs()->activateSubTab(
'releasedObjects');
507 $GLOBALS[
'DIC']->ui()->mainTemplate()->setContent($table->getHTML());
editConsumer(ilPropertyFormGUI $a_form=null)
Edit consumer type $ilCtrl type $tpl.
changeStatusLTIConsumer()
Change activation status type $ilCtrl.
This class represents an option in a checkbox group.
Class ilObjLTIAdministrationGUI.
createLTIConsumer()
Create new lti consumer.
Class to represent an LTI Data Connector for ILIAS.
$dataConnector
Data connector object or string.
deleteLTIConsumer()
Delete consumers type $ilCtrl.
updateLTIConsumer()
Update lti consumer settings ilCtrl $ilCtrl.
static _lookupEntry($a_lang_key, $a_mod, $a_id)
initSettingsForm(ilPropertyFormGUI $form=null)
initConsumerForm(ilPropertyFormGUI $form=null)
getConsumerForm($a_mode='')
prepareOutput($a_show_subobjects=true)
prepare output
TableGUI class for LTI consumer listing.
Class ilObjectGUI Basic methods of all Output classes.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Description of class class.
listConsumers()
List consumers type $ilAccess type $ilToolbar.
__construct(Container $dic, ilPlugin $plugin)
const MODE_UNPROTECTED_KEEP_LOCAL_POLICIES
releasedObjects()
Show relases objects.
static _getIdsForTitle($title, $type='', $partialmatch=false)
checkPermission($a_perm, $a_cmd="", $a_type="", $a_ref_id=null)
Check permission and redirect on error.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
checkPermissionBool($a_perm, $a_cmd="", $a_type="", $a_ref_id=null)
Check permission.