3 declare(strict_types=1);
87 Psr\Http\Message\ServerRequestInterface $request,
89 ILIAS\
HTTP\Wrapper\RequestWrapper $request_wrapper,
93 $this->
ctrl = $ilCtrl;
112 $cmd = $this->
ctrl->getCmd();
115 case self::CMD_DELETE:
116 case self::CMD_DELETE_CONFIRMATION:
117 case self::CMD_DISABLE:
118 case self::CMD_GET_ASYNC_MODAL_OUTPUT:
119 case self::CMD_NEXT_STEP:
123 case self::CMD_ENABLE:
125 $this->
ctrl->redirect($this, self::CMD_VIEW);
127 case self::CMD_PROFILE_NOT_PUBLIC:
131 throw new ilException(
"ilObjStudyProgrammeAutoMembershipsGUI: Command not supported: $cmd");
137 $current_src_type = null;
138 if ($this->request_wrapper->has(self::F_ORIGINAL_SOURCE_TYPE)) {
139 $current_src_type = $this->request_wrapper->retrieve(
140 self::F_ORIGINAL_SOURCE_TYPE,
145 $current_src_id = null;
146 if ($this->request_wrapper->has(self::F_ORIGINAL_SOURCE_ID)) {
147 $current_src_id = $this->request_wrapper->retrieve(
148 self::F_ORIGINAL_SOURCE_ID,
153 $selected_src_type = $this->request_wrapper->retrieve(self::F_SOURCE_TYPE, $this->
refinery->kindlyTo()->string());
154 $selected_src = $this->request_wrapper->retrieve(self::F_SOURCE_ID, $this->
refinery->kindlyTo()->string());
162 $form_id =
"form_" . $form->getId();
164 $modal = $this->ui_factory->modal()->roundtrip(
165 $this->
txt(
'modal_member_auto_select_title'),
166 $this->ui_factory->legacy($form->getHtml())
169 $submit = $this->ui_factory->button()->primary($this->
txt(
'add'),
"#")->withOnLoadCode(
170 function (
$id) use ($form_id) {
171 return "$('#$id').click(function() { $('#$form_id').submit(); return false; });";
175 $modal = $modal->withActionButtons([$submit]);
177 echo $this->ui_renderer->renderAsync($modal);
184 protected function view(
bool $profile_not_public =
false): void
186 if ($profile_not_public) {
187 $this->tpl->setOnScreenMessage(
"info", $this->
lng->txt(
'prg_profile_not_public'));
189 $collected_modals = [];
192 $collected_modals[] = $modal;
194 foreach ($this->
getObject()->getAutomaticMembershipSources() as $ams) {
197 $modal = $this->
getModal($ams->getSourceType(), $ams->getSourceId());
198 $collected_modals[] = $modal;
200 $src_id = $ams->getSourceType() .
'-' . $ams->getSourceId();
203 $modal->getShowSignal(),
209 $this->ui_renderer->render($title),
210 $this->ui_renderer->render($usr),
211 $this->ui_renderer->render($actions)
215 $table->setData(
$data);
216 $this->tpl->setContent(
217 $this->ui_renderer->render($collected_modals)
222 protected function save(): void
227 $post = $this->request->getParsedBody();
228 $form->setValuesByArray(
$post);
229 $src_type =
$post[self::F_SOURCE_TYPE];
230 $src_id =
$post[self::F_SOURCE_ID . $src_type];
233 (is_null($src_type) || $src_type ===
"") ||
234 (is_null($src_id) || $src_id === 0)
236 $this->tpl->setOnScreenMessage(
"failure", $this->
txt(
'no_srctype_or_id'),
true);
237 $this->
ctrl->redirect($this, self::CMD_VIEW);
241 if (in_array($src_type, self::$switch_to_ref_id)) {
243 $src_id = (
int) array_shift($refs);
247 array_key_exists(self::F_ORIGINAL_SOURCE_TYPE,
$post) &&
248 array_key_exists(self::F_ORIGINAL_SOURCE_ID,
$post)
250 $this->
getObject()->deleteAutomaticMembershipSource(
251 (
string)
$post[self::F_ORIGINAL_SOURCE_TYPE],
252 (
int)
$post[self::F_ORIGINAL_SOURCE_ID]
256 $this->
getObject()->storeAutomaticMembershipSource($src_type, (
int) $src_id);
257 $this->tpl->setOnScreenMessage(
"success", $this->
txt(
"auto_add_success"),
true);
258 $this->
ctrl->redirect($this, self::CMD_VIEW);
263 $get = $this->request->getQueryParams();
264 $post = $this->request->getParsedBody();
265 $field = self::CHECKBOX_SOURCE_IDS;
267 $field_ids_in_get = array_key_exists($field, $get);
268 $field_ids_in_post = array_key_exists($field,
$post);
272 if ($field_ids_in_get) {
273 $type_ids = $get[$field];
274 $msg = $this->
lng->txt(
'prg_delete_single_confirmation');
275 } elseif ($field_ids_in_post) {
276 $type_ids = implode(
' ',
$post[$field]);
277 $msg = $this->
lng->txt(
'prg_delete_confirmation');
279 $this->tpl->setOnScreenMessage(
"info", $this->
lng->txt(
'prg_delete_nothing_selected'),
true);
280 $this->
ctrl->redirect($this, self::CMD_VIEW);
283 $type_ids = base64_encode($type_ids);
285 $this->
ctrl->setParameterByClass(self::class, $field, $type_ids);
286 $delete = $this->
ctrl->getFormActionByClass(self::class, self::CMD_DELETE);
287 $cancel = $this->
ctrl->getFormActionByClass(self::class, self::CMD_VIEW);
288 $this->
ctrl->clearParameterByClass(self::class, $field);
291 $this->button_factory->standard($this->
lng->txt(
'prg_confirm_delete'), $delete),
292 $this->button_factory->standard($this->lng->txt(
'prg_cancel'), $cancel)
295 $message_box = $this->message_box_factory->confirmation($msg)->withButtons($buttons);
297 $this->tpl->setContent($this->ui_renderer->render($message_box));
300 protected function delete():
void 302 $field = self::CHECKBOX_SOURCE_IDS;
303 $get = $this->request->getQueryParams();
305 if (!array_key_exists($field, $get)) {
306 $this->tpl->setOnScreenMessage(
"failure", $this->
lng->txt(
'prg_delete_failure'),
true);
307 $this->
ctrl->redirect($this, self::CMD_VIEW);
310 $type_ids = base64_decode($get[$field]);
311 $type_ids = explode(
' ', trim($type_ids));
313 foreach ($type_ids as $src_id) {
314 [
$type,
$id] = explode(
'-', $src_id);
318 $msg = $this->
lng->txt(
'prg_delete_single_success');
319 if (count($type_ids) > 1) {
320 $msg = $this->
lng->txt(
'prg_delete_success');
323 $this->tpl->setOnScreenMessage(
"success", $msg,
true);
324 $this->
ctrl->redirect($this, self::CMD_VIEW);
332 $get = $this->request->getQueryParams();
333 $field = self::CHECKBOX_SOURCE_IDS;
334 if (array_key_exists($field, $get)) {
335 [
$type,
$id] = explode(
'-', $get[$field]);
338 $this->
ctrl->redirect($this, self::CMD_VIEW);
346 $get = $this->request->getQueryParams();
347 $field = self::CHECKBOX_SOURCE_IDS;
348 if (array_key_exists($field, $get)) {
349 [
$type,
$id] = explode(
'-', $get[$field]);
352 $this->
ctrl->redirect($this, self::CMD_VIEW);
368 $this->parent_gui = $a_parent_gui;
376 if ($this->
object === null ||
386 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, $source_type);
387 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, $source_id);
388 $link = $this->
ctrl->getLinkTarget($this,
"getAsynchModalOutput",
"",
true);
389 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, null);
390 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, null);
392 return $this->ui_factory->modal()->roundtrip(
396 ->withAsyncRenderUrl($link);
401 $current_src_type = null;
402 if ($this->request_wrapper->has(self::F_ORIGINAL_SOURCE_TYPE)) {
403 $current_src_type = $this->request_wrapper->retrieve(
404 self::F_ORIGINAL_SOURCE_TYPE,
409 $current_src_id = null;
410 if ($this->request_wrapper->has(self::F_ORIGINAL_SOURCE_ID)) {
411 $current_src_id = $this->request_wrapper->retrieve(self::F_ORIGINAL_SOURCE_ID, $this->
refinery->to()->string());
414 $form = $this->
getForm($current_src_type, $current_src_id);
415 $form_id =
"form_" . $form->getId();
417 $modal = $this->ui_factory->modal()->roundtrip(
418 $this->
txt(
'modal_member_auto_select_title'),
419 $this->ui_factory->legacy($form->getHtml())
422 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, $current_src_type);
423 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, $current_src_id);
424 $link = $this->
ctrl->getLinkTarget($this,
"nextStep",
"",
true);
425 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, null);
426 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, null);
428 $replaceSignal = $modal->getReplaceSignal();
429 $signal_id = $replaceSignal->getId();
430 $f_selected_type = self::F_SOURCE_TYPE;
431 $f_selected_id = self::F_SOURCE_ID;
432 $submit = $this->ui_factory->button()->primary($this->
txt(
'search'),
"#")
434 function (
$id) use ($form_id, $link, $signal_id, $f_selected_type, $f_selected_id) {
436 "$('#$id').click(function() { 438 var checked = $(\"input[name='$f_selected_type']:checked\"). val(); 439 if(checked == 'orgu' || typeof(checked) == \"undefined\") { 440 console.log('$(\'#$form_id\').submit()'); 441 document.getElementById('$form_id').submit(); 445 var i_value = $(\"input[name='$f_selected_id\" + checked + \"']\"). val(); 446 if(i_value == '' || typeof(i_value) == \"undefined\") { 447 document.getElementById('$form_id').submit(); 451 n_url = '$link' + '&$f_selected_type=' + checked + '&$f_selected_id=' + i_value; 452 $('#$id').attr(\"onclick\", function(event) { 453 $(this).trigger('$signal_id', 455 'id' : '$signal_id', 'event' : 'click', 456 'triggerer' : $(this), 457 'options' : JSON.parse('{\"url\":\"' + n_url + '\"}') 467 $modal = $modal->withActionButtons([$submit])
468 ->withAdditionalOnLoadCode(
469 function (
$id) use ($form) {
471 $js = $form->getItemByPostVar($selector_post_var)->getOnloadCode();
472 return implode(
';', $js);
476 echo $this->ui_renderer->renderAsync($modal);
484 if (is_null($source_type)) {
488 $form->setId(uniqid($source_type . $source_id,
true));
489 $form->setFormAction($this->
ctrl->getFormAction($this,
'save'));
492 $rgroup->setValue($source_type);
493 $form->addItem($rgroup);
504 $radio_role->addSubItem($ni_role);
505 $rgroup->addOption($radio_role);
515 $radio_grp->addSubItem($ni_grp);
516 $rgroup->addOption($radio_grp);
526 $radio_crs->addSubItem($ni_crs);
527 $rgroup->addOption($radio_crs);
539 $orgu->getExplorerGUI()->setSelectableTypes([
"orgu"]);
540 $orgu->getExplorerGUI()->setTypeWhiteList([
"root",
"orgu"]);
542 $orgu->getExplorerGUI()->setAjax(
false);
543 $radio_orgu->addSubItem($orgu);
544 $rgroup->addOption($radio_orgu);
546 !is_null($source_type) &&
547 !is_null($source_id) &&
548 $source_type !==
"" &&
551 switch ($source_type) {
553 $ni_role->setValue($source_id);
556 $ni_grp->setValue($source_id);
559 $ni_crs->setValue($source_id);
562 $orgu->setValue($source_id);
569 $hi->setValue($source_type);
573 $hi->setValue($source_id ??
'');
580 string $selected_source_type,
581 string $selected_source,
582 string $source_type = null,
583 string $source_id = null
586 $form->setFormAction($this->
ctrl->getFormAction($this,
"save"));
590 $object_search->setFilter(array($selected_source_type));
591 $entries = $object_search->performSearch()->getEntries();
594 $this->
txt(
"prg_auto_member_select_" . $selected_source_type),
595 self::F_SOURCE_ID . $selected_source_type
597 $form->addItem($rgoup);
598 foreach ($entries as $entry) {
599 $obj_id = (
int) $entry[
'obj_id'];
603 $option =
new ilRadioOption($title, (
string) $obj_id, $description);
604 $rgoup->addOption($option);
608 $hi->setValue($source_type ??
'');
612 $hi->setValue((
string) $source_id);
616 $hi->setValue($selected_source_type);
629 $query_parser->setMinWordLength(1);
630 $query_parser->setGlobalMinLength(3);
631 $query_parser->parse();
633 if (!$query_parser->validate()) {
634 return $query_parser->getMessage();
636 return $query_parser;
644 $btn = $this->ui_factory->button()->primary($this->
txt(
'add_automembership_source'),
'')
645 ->withOnClick($add_cat_signal);
646 $this->
toolbar->addComponent($btn);
658 $items[] = $this->ui_factory->button()->shy($this->
txt(
'edit'),
'')
661 $this->
ctrl->setParameter($this, self::CHECKBOX_SOURCE_IDS, $src_id);
664 $items[] = $this->ui_factory->button()->shy(
665 $this->
txt(
'deactivate'),
666 $this->
ctrl->getLinkTarget($this, self::CMD_DISABLE)
669 $items[] = $this->ui_factory->button()->shy(
670 $this->
txt(
'activate'),
671 $this->
ctrl->getLinkTarget($this, self::CMD_ENABLE)
675 $items[] = $this->ui_factory->button()->shy(
676 $this->
txt(
'delete'),
677 $this->
ctrl->getLinkTarget($this, self::CMD_DELETE_CONFIRMATION)
680 $this->
ctrl->clearParameters($this);
682 return $this->ui_factory->dropdown()->standard($items);
688 $editor = implode(
' ', [
689 $username[
'firstname'],
690 $username[
'lastname'],
691 '(' . $username[
'login'] .
')' 696 if (!$usr->hasPublicProfile()) {
697 $url = $this->
ctrl->getLinkTarget($this, self::CMD_PROFILE_NOT_PUBLIC);
699 return $this->ui_factory->link()->standard($editor,
$url);
711 $this->
ctrl->setParameterByClass(
'ilObjRoleGUI',
'obj_id', $src_id);
712 $this->
ctrl->setParameterByClass(
'ilObjRoleGUI',
'ref_id', self::ROLEFOLDER_REF_ID);
713 $this->
ctrl->setParameterByClass(
'ilObjRoleGUI',
'admin_mode',
'settings');
714 $url = $this->
ctrl->getLinkTargetByClass([
'ilAdministrationGUI',
'ilObjRoleGUI'],
'userassignment');
715 $this->
ctrl->clearParametersByClass(
'ilObjRoleGUI');
724 static function (array
$c):
string {
727 $this->tree->getPathFull($src_id)
729 $hops = array_slice($hops, 1);
730 $title = implode(
' > ', $hops) ??
"-";
735 static function (array $c):
string {
738 $this->tree->getPathFull($src_id)
740 $hops = array_slice($hops, 3);
741 $title = implode(
' > ', $hops) ??
"-";
745 throw new LogicException(
"This should not happen. Forgot a case in the switch?");
748 return $this->ui_factory->link()->standard($title,
$url);
751 protected function txt(
string $code): string
753 return $this->
lng->txt($code);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An entity that renders components to a string output.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
withOnClick(Signal $signal)
Get a component like this, triggering a signal of another component on click.
setParentGUI(ilContainerGUI $a_parent_gui)
Set this GUI's parent gui.
Class ChatMainBarProvider .
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
enable()
Enable single entry.
static _getAllReferences(int $id)
get all reference ids for object ID
const CHECKBOX_SOURCE_IDS
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceByRefId($ref_id)
static _lookupName(int $a_user_id)
lookup user name
getForm(string $source_type=null, ?string $source_id='')
ILIAS Refinery Factory $refinery
setRefId(int $prg_ref_id)
Set ref-id of StudyProgramme before using this GUI.
This describes commonalities between all types of Dropdowns.
view(bool $profile_not_public=false)
Render.
MessageBox Factory $message_box_factory
__construct(ilGlobalTemplateInterface $tpl, ilCtrl $ilCtrl, ilToolbarGUI $ilToolbar, ilLanguage $lng, Factory $ui_factory, MessageBox\Factory $message_box_factory, Button\Factory $button_factory, Renderer $ui_renderer, Psr\Http\Message\ServerRequestInterface $request, ilTree $tree, ILIAS\HTTP\Wrapper\RequestWrapper $request_wrapper, ILIAS\Refinery\Factory $refinery)
getItemAction(string $src_id, Signal $signal, bool $is_enabled)
static _lookupTitle(int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
disable()
Disable single entry.
static _getStaticLink(?int $a_ref_id, string $a_type='', bool $a_fallback_goto=true, string $append="")
Get static link.
const CMD_GET_ASYNC_MODAL_OUTPUT
parseQueryString(string $string)
const CMD_PROFILE_NOT_PUBLIC
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Button Factory $button_factory
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
ILIAS HTTP Wrapper RequestWrapper $request_wrapper
static _lookupDescription(int $obj_id)
const CMD_DELETE_CONFIRMATION
getTitleRepresentation(ilStudyProgrammeAutoMembershipSource $ams)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
ilObjStudyProgramme $object
ILIAS UI Factory $ui_factory
getModal(string $source_type=null, int $source_id=null)
Psr Http Message ServerRequestInterface $request
ilGlobalTemplateInterface $tpl
Class ilObjStudyProgrammeAutoMembershipsGUI.
getSelectionForm(string $selected_source_type, string $selected_source, string $source_type=null, string $source_id=null)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
const F_ORIGINAL_SOURCE_TYPE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS UI Renderer $ui_renderer
const F_ORIGINAL_SOURCE_ID
getObject()
Get current StudyProgramme-object.
getUserRepresentation(int $usr_id)
getToolbar(Signal $add_cat_signal)
Setup toolbar.
static array $switch_to_ref_id
ilContainerGUI $parent_gui