ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilECSObjectSettings.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 
31 abstract class ilECSObjectSettings
32 {
33  protected \ilObject $content_obj; // [ilObj]
34 
35  private ilLogger $logger;
36  private ilLanguage $lng;
37  private ilTree $tree;
39 
40  public const MAIL_SENDER = 6;
41  private \ilGlobalTemplateInterface $main_tpl;
42 
48  public function __construct(ilObject $a_content_object)
49  {
50  global $DIC;
51  $this->main_tpl = $DIC->ui()->mainTemplate();
52 
53  $this->lng = $DIC->language();
54  $this->logger = $DIC->logger()->obj();
55  $this->tree = $DIC->repositoryTree();
56  $this->rbacAdmin = $DIC->rbac()->admin();
57 
58  $this->content_obj = $a_content_object;
59  }
60 
64  public static function getInstanceByObject(ilObject $a_content_obj): ?ilECSObjectSettings
65  {
66  switch ($a_content_obj->getType()) {
67  case 'crs':
68  return new ilECSCourseSettings($a_content_obj);
69 
70  case 'cat':
71  return new ilECSCategorySettings($a_content_obj);
72 
73  case 'file':
74  return new ilECSFileSettings($a_content_obj);
75 
76  case 'glo':
77  return new ilECSGlossarySettings($a_content_obj);
78 
79  case 'grp':
80  return new ilECSGroupSettings($a_content_obj);
81 
82  case 'lm':
83  return new ilECSLearningModuleSettings($a_content_obj);
84 
85  case 'wiki':
86  return new ilECSWikiSettings($a_content_obj);
87  }
88  return null;
89  }
90 
95  public function getContentObject(): \ilObject
96  {
97  return $this->content_obj;
98  }
99 
103  abstract protected function getECSObjectType(): string;
104 
108  protected function isActive(): bool
109  {
110  if (ilECSServerSettings::getInstance()->activeServerExists()) {
111  // imported objects cannot be exported => why not
112  #if(!ilECSImportManager::getInstance()->lookupServerId($this->content_obj->getId()))
113  {
114  return true;
115  }
116  }
117 
118  return false;
119  }
120 
126  public function addSettingsToForm(ilPropertyFormGUI $a_form, $a_type): bool
127  {
128  $export_manager = ilECSExportManager::getInstance();
129  $exportable_participants = (new ilECSParticipantSettingsRepository())->getExportableParticipants($a_type);
130  $obj_id = $this->content_obj->getId();
131 
132  if (!$this->ecsCanBeActivatedForObject($export_manager, $exportable_participants)) {
133  return false;
134  }
135 
136  $this->lng->loadLanguageModule('ecs');
137 
138  // show ecs property form section
139  $ecs = new ilFormSectionHeaderGUI();
140  $ecs->setTitle($this->lng->txt('ecs_' . $a_type . '_export'));
141  $a_form->addItem($ecs);
142 
143 
144  // release or not
145  $exp = new ilRadioGroupInputGUI($this->lng->txt('ecs_' . $a_type . '_export_obj_settings'), 'ecs_export');
146  $exp->setRequired(true);
147  $exp->setValue($export_manager->_isExported($obj_id) ? "1" : "0");
148  $off = new ilRadioOption($this->lng->txt('ecs_' . $a_type . '_export_disabled'), "0");
149  $exp->addOption($off);
150  $on = new ilRadioOption($this->lng->txt('ecs_' . $a_type . '_export_enabled'), "1");
151  $exp->addOption($on);
152  $a_form->addItem($exp);
153 
154  // Show all exportable participants
155  $publish_for = new ilCheckboxGroupInputGUI($this->lng->txt('ecs_publish_for'), 'ecs_sid');
156 
157  // @TODO: Active checkboxes for recipients
158  //$publish_for->setValue((array) $members);
159 
160  // Read receivers
161  $receivers = array();
162  foreach ($export_manager->getExportServerIds($obj_id) as $sid) {
163  $exp = new ilECSExport($sid, $obj_id);
164 
165  $participants = null;
167  $sid,
168  $exp->getEContentId(),
169  $this->getECSObjectType()
170  );
171  if ($details instanceof ilECSEContentDetails) {
172  $participants = $details->getReceivers();
173  }
174  if ($participants) {
175  foreach ($participants as $mid) {
176  $receivers[] = $sid . '_' . $mid;
177  }
178  }
179  }
180  $publish_for->setValue($receivers);
181 
182  foreach ($exportable_participants as $pInfo) {
183  $partSetting = new ilECSParticipantSetting($pInfo['sid'], $pInfo['mid']);
184 
185  $com = new ilCheckboxOption(
186  $partSetting->getCommunityName() . ': ' . $partSetting->getTitle(),
187  'sid_mid'
188  );
189  $com->setValue($pInfo['sid'] . '_' . $pInfo['mid']);
190  $publish_for->addOption($com);
191  }
192  $on->addSubItem($publish_for);
193  return true;
194  }
195 
196  public function getSettingsSection(
197  FieldFactory $field_factory,
199  ): ?Section {
200  $type = $this->content_obj->getType();
201  $export_manager = ilECSExportManager::getInstance();
202  $exportable_participants = (new ilECSParticipantSettingsRepository())->getExportableParticipants($type);
203 
204  if (!$this->ecsCanBeActivatedForObject($export_manager, $exportable_participants)) {
205  return null;
206  }
207 
208  $this->lng->loadLanguageModule('ecs');
209  $trafo = $this->getTrafoForECSExportSection($refinery);
210 
211  $potential_receivers = [];
212 
213  foreach ($exportable_participants as $participant) {
214  $participant_setting = new ilECSParticipantSetting($participant['sid'], $participant['mid']);
215  $potential_receivers[$participant['sid'] . '_' . $participant['mid']] = $field_factory->checkbox(
216  $participant_setting->getCommunityName() . ': ' . $participant_setting->getTitle()
217  );
218  }
219 
220  $value = $this->getValueForECSExportOptionalGroup(
221  $export_manager,
222  array_keys($potential_receivers)
223  );
224 
225  $inputs['ecs_export'] = $field_factory->optionalGroup(
226  $potential_receivers,
227  $this->lng->txt('ecs_' . $type . '_export_obj_settings')
228  )
229  ->withValue($value);
230 
231  return $field_factory->section($inputs, $this->lng->txt('ecs_' . $type . '_export'))
233  }
234 
235  protected function ecsCanBeActivatedForObject(
236  ilECSExportManager $export_manager,
237  array $exportable_participants
238  ): bool {
239  $this->logger->debug('Show ecs settings.');
240  if (!$this->isActive()) {
241  $this->logger->debug('Object type is not active. => no settings.');
242  return false;
243  }
244 
245  $obj_id = $this->content_obj->getId();
246 
247  // Return if no participant is enabled for export and the current object is not released
248  if (!$this->getContentObject()->withReferences()) {
249  $this->logger->debug('Called without references. => no settings.');
250  return false;
251  }
252 
253  if (!$exportable_participants && !$export_manager->_isExported($obj_id)) {
254  $this->logger->debug('Object type is not exportable. => no settings.');
255  return false;
256  }
257  if (
258  $this->tree->checkForParentType($this->tree->getParentId($this->getContentObject()->getRefId()), 'crs', false) ||
259  $this->tree->checkForParentType($this->tree->getParentId($this->getContentObject()->getRefId()), 'grp', false)
260  ) {
261  $this->logger->debug('Parent crs/grp in path. => no settings.');
262  return false;
263  }
264 
265  return true;
266  }
267 
269  {
270  return $refinery->custom()->transformation(
271  function (?array $vs): array {
272  if ($vs['ecs_export'] === null) {
273  return [
274  'is_exported' => false
275  ];
276  }
277 
278  return [
279  'is_exported' => true,
280  'values' => array_keys($vs['ecs_export'])
281  ];
282  }
283  );
284  }
285 
287  ilECSExportManager $export_manager,
288  array $potential_receivers
289  ): ?array {
290  $obj_id = $this->content_obj->getId();
291  $active_receivers = null;
292  foreach ($export_manager->getExportServerIds($obj_id) as $sid) {
293  $exp = new ilECSExport($sid, $obj_id);
294 
295  $participants = null;
297  $sid,
298  $exp->getEContentId(),
299  $this->getECSObjectType()
300  );
301  if ($details instanceof ilECSEContentDetails) {
302  $participants = $details->getReceivers();
303  }
304  if ($participants === null) {
305  continue;
306  }
307  foreach ($participants as $mid) {
308  $active_receivers[$sid . '_' . $mid] = true;
309  }
310  }
311 
312  if ($active_receivers === null) {
313  return null;
314  }
315 
316  $missing_keys = (array_diff($potential_receivers, array_keys($active_receivers)));
317  foreach ($missing_keys as $key) {
318  $active_receivers[$key] = false;
319  }
320 
321  return $active_receivers;
322  }
323 
324  public function saveSettingsSection(array $section): bool
325  {
326  return $this->handleSettings($section['is_exported'], $section['values']);
327  }
328 
335  public function handleSettingsUpdate(ilPropertyFormGUI $form): bool
336  {
337  return $this->handleSettings(
338  (bool) $form->getInput("ecs_export"),
339  (array) $form->getInput("ecs_sid")
340  );
341  }
342 
343 
344  private function handleSettings(
345  bool $ecs_export,
346  array $selected_receivers
347  ): bool {
348  if (!$this->isActive()) {
349  return true;
350  }
351 
352  // Parse post data
353  $mids = array();
354  foreach ((array) $selected_receivers as $sid_mid) {
355  $tmp = explode('_', $sid_mid);
356  $mids[$tmp[0]][] = $tmp[1];
357  }
358 
359  try {
360  // Update for each server
361  foreach ((new ilECSParticipantSettingsRepository())->getServersContaingExports() as $server_id) {
363  if ($server->isEnabled()) {
364  // Export
365  $export = true;
366  if (!$ecs_export) {
367  $export = false;
368  }
369  if (
370  !isset($mids[$server_id]) ||
371  !is_array($mids[$server_id]) ||
372  !count($mids[$server_id])) {
373  $export = false;
374  }
376  $server,
377  $export,
378  $mids[$server_id] ?? []
379  );
380  }
381  }
382  } catch (ilECSConnectorException $exc) {
383  $this->main_tpl->setOnScreenMessage('failure', 'Error exporting to ECS server: ' . $exc->getMessage());
384  return false;
385  }
386  return true;
387  }
388 
395  protected function handleSettingsForServer(ilECSSetting $a_server, bool $a_export, array $a_mids): void
396  {
397  $export_settings = new ilECSExport($a_server->getServerId(), $this->content_obj->getId());
398 
399  // already exported?
400  if ($export_settings->isExported()) {
401  // still exportable: update ecs
402  if ($a_export) {
403  $this->doUpdate($a_server, $export_settings, $a_mids);
404  }
405  // not exportable anymore
406  else {
407  $this->doDelete($a_server, $export_settings);
408  }
409  }
410  // not exported yet
411  elseif ($a_export) {
412  $this->doAdd($a_server, $export_settings, $a_mids);
413  }
414  }
415 
421  public function handleContentUpdate(): bool
422  {
423  if (!$this->isActive()) {
424  return true;
425  }
426  $exportManager = ilECSExportManager::getInstance();
427  $export_servers = $exportManager->getExportServerIds($this->content_obj->getId());
428  foreach ($export_servers as $server_id) {
430  if ($server->isEnabled()) {
431  try {
432  $export_settings = new ilECSExport($server_id, $this->content_obj->getId());
433 
434  // already exported, update ecs
435  if ($export_settings->isExported()) {
436  $this->doUpdate($server, $export_settings);
437  }
438  } catch (ilECSConnectorException $exc) {
439  $this->logger->warning(__METHOD__ . ': Cannot handle ECS content update. ' . $exc->getMessage());
440  return false;
441  }
442  }
443  }
444  return true;
445  }
446 
450  protected function doAdd(ilECSSetting $a_server, ilECSExport $a_export_settings, array $a_mids): void
451  {
452  $this->logger->info(__METHOD__ . ': Starting ECS add resource...');
453 
454  $json = $this->buildJson($a_server);
455 
456  $connector = new ilECSConnector($a_server);
457  $connector->addHeader(ilECSConnector::HEADER_MEMBERSHIPS, implode(',', $a_mids));
458  $econtent_id = $connector->addResource(
459  $this->getECSObjectType(),
460  json_encode($json, JSON_THROW_ON_ERROR)
461  );
462 
463  // status changed
464  $a_export_settings->setExported(true);
465  $a_export_settings->setEContentId($econtent_id);
466  $a_export_settings->save();
467 
468  $this->handlePermissionUpdate($a_server);
469 
470  // Send mail
471  $this->sendNewContentNotification($a_server, $econtent_id);
472  }
473 
482  protected function doUpdate(ilECSSetting $a_server, ilECSExport $a_export_settings, ?array $a_mids = null): void
483  {
484  $econtent_id = $a_export_settings->getEContentId();
485  if (!$econtent_id) {
486  $this->logger->warning(__METHOD__ . ': Missing eid. Aborting.');
487  throw new ilECSConnectorException('Missing ECS content ID. Aborting.');
488  }
489  $connector = new ilECSConnector($a_server);
490 
491  if (!$a_mids) {
492  $a_mids = $this->getParticipants($a_server->getServerId(), $econtent_id);
493  }
494  $this->logger->info(__METHOD__ . ': Start updating ECS content - ' . print_r($a_mids, true));
495  $connector->addHeader(ilECSConnector::HEADER_MEMBERSHIPS, implode(',', (array) $a_mids));
496 
497  $json = $this->buildJson($a_server);
498  $connector->updateResource(
499  $this->getECSObjectType(),
500  $econtent_id,
501  json_encode($json, JSON_THROW_ON_ERROR)
502  );
503 
504  $this->handlePermissionUpdate($a_server);
505  }
506 
514  public function doDelete(ilECSSetting $a_server, ilECSExport $a_export_settings): void
515  {
516  // already exported?
517  if ($a_export_settings->isExported()) {
518  $econtent_id = $a_export_settings->getEContentId();
519  if (!$econtent_id) {
520  $this->logger->warning(__METHOD__ . ': Missing eid. Aborting.');
521  throw new ilECSConnectorException('Missing ECS content ID. Aborting.');
522  }
523  $connector = new ilECSConnector($a_server);
524 
525  $this->logger->info(__METHOD__ . ': Start deleting ECS content...');
526  $connector->deleteResource(
527  $this->getECSObjectType(),
528  $econtent_id
529  );
530 
531  // status changed
532  $a_export_settings->setExported(false);
533  $a_export_settings->save();
534  }
535  }
536 
543  public static function _handleDelete(array $a_subbtree_nodes): void
544  {
545  // active?
546  if (!ilECSServerSettings::getInstance()->activeServerExists()) {
547  return;
548  }
549  $exportManager = ilECSExportManager::getInstance();
550  $exported = $exportManager->getExportedIds();
551  foreach ($a_subbtree_nodes as $node) {
552  if (in_array(
553  $node['obj_id'],
554  $exported,
555  true
556  ) && $content_obj = ilObjectFactory::getInstanceByRefId($node['child'], false)) {
557  $settings = self::getInstanceByObject($content_obj);
558 
559  // Read export server ids
560  foreach ($exportManager->getExportServerIds($node['obj_id']) as $sid) {
562  $export_settings = new ilECSExport($sid, $content_obj->getId());
563  if ($settings) {
564  $settings->doDelete($server, $export_settings);
565  }
566  }
567  }
568  }
569  }
570 
574  protected function getParticipants(int $a_server_id, int $a_econtent_id): array
575  {
576  $receivers = array();
577  foreach ((array) $a_server_id as $sid) {
578  $participants = null;
579  $details = ilECSEContentDetails::getInstanceFromServer($sid, $a_econtent_id, $this->getECSObjectType());
580  if ($details instanceof ilECSEContentDetails) {
581  $participants = $details->getReceivers();
582  }
583  if ($participants) {
584  foreach ($participants as $mid) {
585  $receivers[] = $mid;
586  }
587  }
588  }
589  return $receivers;
590  }
591 
595  protected function sendNewContentNotification(ilECSSetting $a_server, $a_econtent_id): bool
596  {
597  if (!count($rcps = $a_server->getApprovalRecipients())) {
598  return true;
599  }
600 
602  $lang->loadLanguageModule('ecs');
603 
604  // @TODO: read mail
605  $mail = new ilMail(self::MAIL_SENDER);
606  $message = $lang->txt('ecs_export_created_body_a') . "\n\n";
607  $message .= $lang->txt('title') . ': ' . $this->content_obj->getTitle() . "\n";
608  if (($desc = $this->content_obj->getDescription()) !== '') {
609  $message .= $lang->txt('desc') . ': ' . $desc . "\n";
610  }
611 
612  // Participant info
613  $message .= ("\n" . $lang->txt('ecs_published_for'));
614 
615  try {
616  $found = false;
617 
618  $receivers = null;
620  $a_server->getServerId(),
621  $a_econtent_id,
622  $this->getECSObjectType()
623  );
624  if ($details instanceof ilECSEContentDetails) {
625  $receivers = $details->getReceivers();
626  }
627  if ($receivers) {
628  foreach ($receivers as $member) {
629  $found = true;
630 
631  $part = ilECSCommunityReader::getInstanceByServerId($a_server->getServerId())->getParticipantByMID($member);
632 
633  $message .= ("\n\n" . $part->getParticipantName() . "\n");
634  $message .= ($part->getDescription());
635  }
636  }
637  if ($found) {
638  $message .= "\n\n";
639  } else {
640  $message .= (' ' . $lang->txt('ecs_not_published') . "\n\n");
641  }
642  } catch (ilECSConnectorException $e) {
643  $this->logger->warning(__METHOD__ . ': Cannot read approvements.');
644  return false;
645  }
646 
647  $href = ilLink::_getStaticLink($this->content_obj->getRefId(), 'crs', true);
648  $message .= $lang->txt("perma_link") . ': ' . $href . "\n\n";
650 
651  $mail->enqueue(
652  $a_server->getApprovalRecipientsAsString(),
653  '',
654  '',
655  $lang->txt('ecs_new_approval_subject'),
656  $message,
657  array()
658  );
659 
660  return true;
661  }
662 
666  protected function handlePermissionUpdate(ilECSSetting $server): void
667  {
668  if (
669  ($this->content_obj->getType() === 'crs') ||
670  ($this->content_obj->getType() === 'grp')
671  ) {
672  $this->logger->info(__METHOD__ . ': Permission update for courses/groups');
673  $this->rbacAdmin->grantPermission(
674  $server->getGlobalRole(),
675  ilRbacReview::_getOperationIdsByName(array('join','visible')),
676  $this->content_obj->getRefId()
677  );
678  }
679  }
680 
684  protected function getJsonCore(string $a_etype): object
685  {
686  $json = new stdClass();
687  $json->lang = 'en_EN'; // :TODO: obsolet?
688  $json->id = 'il_' . IL_INST_ID . '_' . $this->getContentObject()->getType() . '_' . $this->getContentObject()->getId();
689  $json->etype = $a_etype;
690  $json->title = $this->content_obj->getTitle();
691  $json->abstract = $this->content_obj->getLongDescription();
692 
693  $json->url = ilLink::_getLink($this->content_obj->getRefId(), $this->content_obj->getType());
694 
695  return $json;
696  }
697 
701  protected function addMetadataToJson(object $a_json, ilECSSetting $a_server, array $a_definition): void
702  {
704 
705  $values = ilECSUtils::getAdvancedMDValuesForObjId($this->content_obj->getId());
706 
707  foreach ($a_definition as $id => $type) {
708  if (is_array($type)) {
709  [$type , $target] = $type;
710  } else {
711  $target = $id;
712  }
713 
714  if ($field = $mappings->getMappingByECSName(ilECSDataMappingSetting::MAPPING_EXPORT, $id)) {
715  $value = $values[$field] ?? '';
716 
717  switch ($type) {
719  $a_json->{$target} = explode(',', $value);
720  break;
721 
723  $a_json->{$target} = (int) $value;
724  break;
725 
727  $a_json->{$target} = (string) $value;
728  break;
729 
731  if (!isset($a_json->{$target})) {
732  $a_json->{$target} = new ilECSTimePlace();
733  }
734  $a_json->{$target}->{'set' . ucfirst($id)}($value);
735  break;
736  }
737  }
738  }
739  }
740 
746  abstract protected function buildJson(ilECSSetting $a_server);
747 }
ilGlobalTemplateInterface $main_tpl
static getAdvancedMDValuesForObjId(int $a_obj_id)
Get advanced metadata values for object id.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This class represents an option in a radio group.
getParticipants(int $a_server_id, int $a_econtent_id)
Get participants for server and ecs resource.
getTrafoForECSExportSection(Refinery $refinery)
static getInstanceByServerId(int $a_server_id)
Get singleton instance.
handleContentUpdate()
Update ECS Content.
const IL_INST_ID
Definition: constants.php:40
This class represents an option in a checkbox group.
Representation of ECS EContent Time Place.
getServerId()
Get current server id.
Storage of an ECS exported object.
setExported(bool $a_status)
Set exported.
static getInstance()
Get the singelton instance of this ilECSExportManager.
isActive()
Is ECS (for current object) active?
getApprovalRecipientsAsString()
get approval recipients as string
static _handleDelete(array $a_subbtree_nodes)
handle delete Objects that are moved to the trash call ECS-Remove
static getInstance()
Get singleton instance.
static _getOperationIdsByName(array $operations)
get ops_id&#39;s by name.
Presentation of ecs content details (http://...campusconnect/courselinks/id/details) ...
doUpdate(ilECSSetting $a_server, ilECSExport $a_export_settings, ?array $a_mids=null)
Update ECS resource.
getECSObjectType()
Get ECS resource identifier, e.g.
__construct(ilObject $a_content_object)
Constructor.
addMetadataToJson(object $a_json, ilECSSetting $a_server, array $a_definition)
Add advanced metadata to json (export)
getSettingsSection(FieldFactory $field_factory, Refinery $refinery)
getInput(string $a_post_var, bool $ensureValidation=true)
Returns the input of an item, if item provides getInput method and as fallback the value of the HTTP-...
static _getAutoGeneratedMessageString(?ilLanguage $lang=null)
const TYPE_TIMEPLACE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getContentObject()
Get content object.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This class represents a property in a property form.
static getInstanceByObject(ilObject $a_content_obj)
Get settings handler for repository object.
ecsCanBeActivatedForObject(ilECSExportManager $export_manager, array $exportable_participants)
sendNewContentNotification(ilECSSetting $a_server, $a_econtent_id)
send notifications about new EContent
isExported()
check if an object is exported or not
getEContentId()
get econtent id
static getInstanceByServerId(int $a_server_id)
Get instance by server id.
Class ilECSGroupSettings.
setValue(string $a_value)
static getInstanceByServerId(int $a_server_id)
Get singleton instance per server.
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
getExportServerIds(int $a_obj_id)
lookup server ids of exported materials
global $DIC
Definition: shib_login.php:22
handlePermissionUpdate(ilECSSetting $server)
Handle permission update.
doAdd(ilECSSetting $a_server, ilECSExport $a_export_settings, array $a_mids)
Add resource to ECS.
getValueForECSExportOptionalGroup(ilECSExportManager $export_manager, array $potential_receivers)
This class represents a property in a property form.
buildJson(ilECSSetting $a_server)
Build resource-specific json.
_isExported(int $a_obj_id)
Check if object is exported.
static _getLanguage(string $a_lang_key='')
Get language object.
setRequired(bool $a_required)
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
getGlobalRole()
get global role
getJsonCore(string $a_etype)
Build core json structure.
setEContentId(int $a_id)
set econtent id
$lang
Definition: xapiexit.php:25
handleSettingsUpdate(ilPropertyFormGUI $form)
Update ECS Export Settings.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
static getInstanceFromServer(int $a_server_id, int $a_econtent_id, string $a_resource_type)
Get data from server.
A transformation is a function from one datatype to another.
Manage the ECS exported contents.
$message
Definition: xapiexit.php:31
handleSettingsForServer(ilECSSetting $a_server, bool $a_export, array $a_mids)
Save ECS settings (add- update- deleteResource)
Class ilECSCategorySettings.
$server
Definition: shib_login.php:24
Class ilRbacAdmin Core functions for role based access control.
getApprovalRecipients()
get approval recipients
Handles object exports to ECS.
addSettingsToForm(ilPropertyFormGUI $a_form, $a_type)
Fill ECS export settings "multiple servers".
doDelete(ilECSSetting $a_server, ilECSExport $a_export_settings)
Delete ECS resource.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilECSCourseSettings.
handleSettings(bool $ecs_export, array $selected_receivers)