19 declare(strict_types=1);
70 $this->usr_id = $a_usr_id;
71 $this->ref_id = $a_ref_id;
77 $this->ui_factory = $DIC->ui()->factory();
78 $this->ui_renderer = $DIC->ui()->renderer();
79 $this->request = $DIC->http()->request();
80 $this->
lng = $DIC->language();
81 $this->
lng->loadLanguageModule(
'ecs');
82 $this->
ctrl = $DIC->ctrl();
83 $this->objDefinition = $DIC[
'objDefinition'];
87 $this->obj_id = $this->remote_object->getId();
92 return $this->consents->hasConsented($this->server_id, $this->mid);
97 $this->mid = $this->remote_object->getMID();
103 return $this->remote_object->getOrganization();
108 return $this->remote_object->isLocalObject();
141 $button = $this->ui_factory
144 $this->
lng->txt($this->remote_object->getType() .
'_call'),
145 $this->
ctrl->getLinkTarget($this->remote_gui,
'call')
163 if ($component ===
null) {
166 $this->
toolbar->addComponent($component);
169 $image = $image->withOnClick($component->getShowSignal());
172 ->withTitleAction($component->getShowSignal());
178 int $a_trigger_type = self::TRIGGER_TYPE_STANDARD
181 $form_id =
'form_' . $form->getId();
182 $agree = $this->ui_factory->button()
183 ->primary(
'Agree and Proceed',
'#')
185 function (
$id) use ($form_id) {
186 return "$('#$id').click(function() { $('#$form_id').submit(); return false; });";
190 $submitted = (string) ($this->request->getParsedBody()[
'cmd'] ??
'');
193 if (strcmp($submitted,
'submit') === 0) {
195 $form->setValuesByPost();
196 $error = $this->ui_factory->messageBox()->failure(
197 $this->
lng->txt(
'ecs_consent_required')
199 $error_html = $this->ui_renderer->render([$error]);
204 $modal = $this->ui_factory->modal()->roundtrip(
205 $this->
lng->txt(
'ecs_consent_modal_title'),
206 $this->ui_factory->legacy()->content(
210 )->withActionButtons([$agree]);
212 $modal = $modal->withOnLoad($modal->getShowSignal());
216 if ($a_trigger_type === self::TRIGGER_TYPE_STANDARD) {
217 $button = $this->ui_factory->button()->standard(
218 $this->
lng->txt($this->remote_object->getType() .
'_call'),
221 $modal->getShowSignal()
223 } elseif ($a_trigger_type === self::TRIGGER_TYPE_SHY) {
224 $button = $this->ui_factory->button()->shy(
225 $this->remote_object->getTitle(),
228 $modal->getShowSignal()
231 return [$button, $modal];
236 $consented = (bool) ($this->request->getParsedBody()[
'consent'] ?? 0);
237 $ref_id_hidden = (
int) ($this->request->getParsedBody()[
'consented_ref_id'] ?? 0);
238 $ref_type_hidden = (string) ($this->request->getParsedBody()[
'consented_type'] ??
'');
240 $this->consents->add($this->server_id, $this->mid);
241 $this->
ctrl->setParameterByClass(
246 $this->
ctrl->redirectToURL(
247 $this->
ctrl->getLinkTargetByClass(
249 ilRepositoryGUI::class,
263 $form->setId(uniqid(
'form',
false));
264 $form->setFormAction(
'#');
267 $ref_id_hidden->setValue((
string) $this->ref_id);
268 $form->addItem($ref_id_hidden);
271 $form->addItem($ref_type_hidden);
273 $this->
lng->txt(
'title'),
279 $form->addItem($title);
282 $this->
lng->txt(
'ecs_form_target_platform'),
286 $form->addItem($target);
292 $this->
lng->txt(
'organization'),
295 $provider->setValue($organisation->getName());
300 $this->
lng->txt(
'ecs_form_consent'),
303 $consent->setValue(
"1");
304 $consent->setChecked($this->consents->hasConsented($this->server_id, $this->mid));
305 $consent->setRequired(
true);
306 $form->addItem($consent);
308 $user_data_fields = [];
315 $user_data_fields[] = $this->
lng->txt(
'ecs_' . $field);
317 $listing = $this->ui_factory->listing()->unordered($user_data_fields);
318 $listing_html = $this->ui_renderer->render([$listing]);
319 $consent->setOptionTitle(
321 'ecs_form_consent_option_title' 322 ) .
'<br />' . $listing_html
325 $submit->setValue(
'submit');
326 $form->addItem($submit);
332 $server_id = $this->importManager->lookupServerId($this->obj_id);
333 if (0 === $server_id) {
340 $part = $community_reader->getParticipantByMID($this->mid);
342 return $part->getOrganisation();
352 return get_class($this->remote_gui);
364 'Invalid ref_id given: ' . $this->ref_id
addConsentModalToCard(RepositoryObject $card)
ilRemoteObjectBase $remote_object
static getInstance()
Get the singelton instance of this ilECSExportManager.
Manage the ECS imported contents.
ilECSImportManager $importManager
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getImage()
Get the image of the card.
static getInstance()
Get the singleton instance of this ilECSImportManager.
static _lookupTitle(int $obj_id)
addConsentModalToToolbar(ilToolbarGUI $toolbar)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
const TRIGGER_TYPE_STANDARD
static getInstanceByUserId(int $a_usr_id)
ilECSUserConsents $consents
addLinkToToolbar(ilToolbarGUI $toolbar)
Remote object app base class.
ilECSExportManager $exportManager
RequestInterface $request
saveConsent(ilPropertyFormGUI $form)
withImage(Image $image)
Set the image of the card.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
ilObjectDefinition $objDefinition
addRemoteLinkToToolbar(ilToolbarGUI $toolbar)
Manage the ECS exported contents.
__construct(int $a_usr_id, int $a_ref_id, ?ilRemoteObjectBaseGUI $remote_gui=null)
getConsentModalComponents(int $a_trigger_type=self::TRIGGER_TYPE_STANDARD)
ilRemoteObjectBaseGUI $remote_gui