19 declare(strict_types=1);
47 protected URI $back_target,
48 protected bool $inline =
false,
49 protected ?
bool $edit =
null,
50 private URI $ilias_base_url =
new URI(ILIAS_HTTP_PATH)
54 $data_signer = $DIC[
'file_delivery.data_signer'];
57 'resource_id' => $this->identification->serialize(),
58 'user_id' => $DIC->user()->getId(),
59 'stakeholder' => $this->stakeholder::class,
60 'editable' => $edit ?? ($this->action->getName() === ActionTarget::EDIT->value)
77 return $this->back_target;
87 if ($this->action ===
null) {
93 $url = rtrim((
string) $this->action->getLauncherUrl(),
'/?#')
97 . urlencode(rtrim((
string) $this->ilias_base_url,
'/')
101 . $this->identification->serialize());
103 if ($appendices !== []) {
104 $url .=
'&' . implode(
'&', $appendices);
116 $appendix = $this->action->getUrlAppendix();
119 if ($appendix !==
null) {
120 preg_match_all(
'/([^<]*)=([^>&]*)/m', $appendix, $appendices, PREG_SET_ORDER, 0);
122 $appendices = array_filter($appendices,
static fn($appendix):
true => isset($appendix[1], $appendix[2]));
125 $appendices = array_filter($appendices,
static fn($appendix):
bool => strtolower((
string) $appendix[1]) !==
'wopisrc');
128 $appendices = array_filter($appendices,
static fn($appendix):
bool => !preg_match(
'/([A-Z\_]*)/m', (
string) $appendix[2]));
130 $appendices =
array_map(
static fn($appendix):
string => $appendix[1] .
'=' . $appendix[2], $appendices);
if(count($parts) !=3) $payload
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct()
Constructor setup ILIAS global object public.
Class ResourceIdentification.
ActionTarget
Officialy supported action targets, see https://learn.microsoft.com/en-us/openspecs/office_protocols/...
Interface ResourceStakeholder.