19 declare(strict_types=1);
88 $cmd = $this->
ctrl->getCmd();
91 case self::CMD_DELETE:
92 case self::CMD_DELETE_CONFIRMATION:
93 case self::CMD_DISABLE:
94 case self::CMD_GET_ASYNC_MODAL_OUTPUT:
95 case self::CMD_NEXT_STEP:
99 case self::CMD_ENABLE:
101 $this->
ctrl->redirect($this, self::CMD_VIEW);
103 case self::CMD_PROFILE_NOT_PUBLIC:
106 case 'handleExplorerCommand':
109 throw new ilException(
"ilObjStudyProgrammeAutoMembershipsGUI: Command not supported: $cmd");
115 $current_src_type =
null;
116 if ($this->request_wrapper->has(self::F_ORIGINAL_SOURCE_TYPE)) {
117 $current_src_type = $this->request_wrapper->retrieve(
118 self::F_ORIGINAL_SOURCE_TYPE,
123 $current_src_id =
null;
124 if ($this->request_wrapper->has(self::F_ORIGINAL_SOURCE_ID)) {
125 $current_src_id = $this->request_wrapper->retrieve(
126 self::F_ORIGINAL_SOURCE_ID,
131 $selected_src_type = $this->request_wrapper->retrieve(self::F_SOURCE_TYPE, $this->
refinery->kindlyTo()->string());
132 $selected_src = $this->request_wrapper->retrieve(self::F_SOURCE_ID, $this->
refinery->kindlyTo()->string());
140 $form_id =
"form_" . $form->getId();
142 $modal = $this->ui_factory->modal()->roundtrip(
143 $this->
txt(
'modal_member_auto_select_title'),
144 $this->ui_factory->legacy()->content($form->getHtml())
147 $submit = $this->ui_factory->button()->primary($this->
txt(
'add'),
"#")->withOnLoadCode(
148 function (
$id) use ($form_id) {
149 return "$('#$id').click(function() { $('#$form_id').submit(); return false; });";
153 $modal = $modal->withActionButtons([$submit]);
155 echo $this->ui_renderer->renderAsync($modal);
162 protected function view(
bool $profile_not_public =
false): void
164 if ($profile_not_public) {
165 $this->tpl->setOnScreenMessage(
"info", $this->
lng->txt(
'prg_profile_not_public'));
167 $collected_modals = [];
170 $collected_modals[] = $modal;
172 foreach ($this->
getObject()->getAutomaticMembershipSources() as $ams) {
174 $usr = $this->
getUserRepresentation($ams->getLastEditorId()) ?? $this->ui_factory->legacy()->content(
'-');
175 $modal = $this->
getModal($ams->getSourceType(), $ams->getSourceId(), $ams->isSearchRecursive());
176 $collected_modals[] = $modal;
177 $src_id = $ams->getSourceType() .
'-' . $ams->getSourceId() .
'-' . $ams->isSearchRecursive();
180 $modal->getShowSignal(),
186 $this->ui_renderer->render($title),
187 $this->ui_renderer->render($usr),
188 $this->ui_renderer->render($actions)
192 $table->setData(
$data);
193 $this->tpl->setContent(
194 $this->ui_renderer->render($collected_modals)
199 protected function save(): void
204 $post = $this->request->getParsedBody();
205 $form->setValuesByArray(
$post);
206 $src_type =
$post[self::F_SOURCE_TYPE];
207 $src_id =
$post[self::F_SOURCE_ID . $src_type] ??
null;
208 $search_recursive = (bool) (
$post[self::F_SEARCH_RECURSIVE] ??
false);
211 (is_null($src_type) || $src_type ===
"") ||
212 (is_null($src_id) || $src_id === 0)
214 $this->tpl->setOnScreenMessage(
"failure", $this->
txt(
'no_srctype_or_id'),
true);
215 $this->
ctrl->redirect($this, self::CMD_VIEW);
219 if (in_array($src_type, self::$switch_to_ref_id)) {
221 $src_id = (
int) array_shift($refs);
225 array_key_exists(self::F_ORIGINAL_SOURCE_TYPE,
$post) &&
226 array_key_exists(self::F_ORIGINAL_SOURCE_ID,
$post)
228 $this->
getObject()->deleteAutomaticMembershipSource(
229 (
string)
$post[self::F_ORIGINAL_SOURCE_TYPE],
230 (
int)
$post[self::F_ORIGINAL_SOURCE_ID]
234 $this->
getObject()->storeAutomaticMembershipSource($src_type, (
int) $src_id, $search_recursive);
235 $this->tpl->setOnScreenMessage(
"success", $this->
txt(
"auto_add_success"),
true);
236 $this->
ctrl->redirect($this, self::CMD_VIEW);
241 $get = $this->request->getQueryParams();
242 $post = $this->request->getParsedBody();
243 $field = self::CHECKBOX_SOURCE_IDS;
245 $field_ids_in_get = array_key_exists($field, $get);
246 $field_ids_in_post = array_key_exists($field,
$post);
250 if ($field_ids_in_get) {
251 $type_ids = $get[$field];
252 $msg = $this->
lng->txt(
'prg_delete_single_confirmation');
253 } elseif ($field_ids_in_post) {
254 $type_ids = implode(
' ',
$post[$field]);
255 $msg = $this->
lng->txt(
'prg_delete_confirmation');
257 $this->tpl->setOnScreenMessage(
"info", $this->
lng->txt(
'prg_delete_nothing_selected'),
true);
258 $this->
ctrl->redirect($this, self::CMD_VIEW);
261 $type_ids = base64_encode($type_ids);
263 $this->
ctrl->setParameterByClass(self::class, $field, $type_ids);
264 $delete = $this->
ctrl->getFormActionByClass(self::class, self::CMD_DELETE);
265 $cancel = $this->
ctrl->getFormActionByClass(self::class, self::CMD_VIEW);
266 $this->
ctrl->clearParameterByClass(self::class, $field);
269 $this->button_factory->standard($this->
lng->txt(
'prg_confirm_delete'), $delete),
270 $this->button_factory->standard($this->lng->txt(
'prg_cancel'), $cancel)
273 $message_box = $this->message_box_factory->confirmation($msg)->withButtons($buttons);
275 $this->tpl->setContent($this->ui_renderer->render($message_box));
278 protected function delete():
void 280 $field = self::CHECKBOX_SOURCE_IDS;
281 $get = $this->request->getQueryParams();
283 if (!array_key_exists($field, $get)) {
284 $this->tpl->setOnScreenMessage(
"failure", $this->
lng->txt(
'prg_delete_failure'),
true);
285 $this->
ctrl->redirect($this, self::CMD_VIEW);
288 $type_ids = base64_decode($get[$field]);
289 $type_ids = explode(
' ', trim($type_ids));
291 foreach ($type_ids as $src_id) {
292 [$type,
$id] = explode(
'-', $src_id);
293 $this->
getObject()->deleteAutomaticMembershipSource((
string) $type, (
int)
$id);
296 $msg = $this->
lng->txt(
'prg_delete_single_success');
297 if (count($type_ids) > 1) {
298 $msg = $this->
lng->txt(
'prg_delete_success');
301 $this->tpl->setOnScreenMessage(
"success", $msg,
true);
302 $this->
ctrl->redirect($this, self::CMD_VIEW);
310 $get = $this->request->getQueryParams();
311 $field = self::CHECKBOX_SOURCE_IDS;
312 if (array_key_exists($field, $get)) {
313 [$type,
$id, $search_recursive] = explode(
'-', $get[$field]);
314 $this->
getObject()->enableAutomaticMembershipSource((
string) $type, (
int) $id, (
bool) $search_recursive);
316 $this->
ctrl->redirect($this, self::CMD_VIEW);
324 $get = $this->request->getQueryParams();
325 $field = self::CHECKBOX_SOURCE_IDS;
326 if (array_key_exists($field, $get)) {
327 [$type,
$id, $search_recursive] = explode(
'-', $get[$field]);
328 $this->
getObject()->disableAutomaticMembershipSource((
string) $type, (
int) $id, (
bool) $search_recursive);
330 $this->
ctrl->redirect($this, self::CMD_VIEW);
346 $this->parent_gui = $a_parent_gui;
354 if ($this->
object ===
null ||
363 ?
string $source_type =
null,
364 ?
int $source_id =
null,
365 bool $search_recursive =
false 367 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, $source_type);
368 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, $source_id);
369 $this->
ctrl->setParameter($this, self::F_SEARCH_RECURSIVE, $search_recursive);
370 $link = $this->
ctrl->getLinkTarget($this,
"getAsynchModalOutput",
"",
true);
371 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE,
null);
372 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID,
null);
373 $this->
ctrl->setParameter($this, self::F_SEARCH_RECURSIVE,
null);
375 return $this->ui_factory->modal()->roundtrip(
379 ->withAsyncRenderUrl($link);
384 $current_src_type =
null;
385 if ($this->request_wrapper->has(self::F_ORIGINAL_SOURCE_TYPE)) {
386 $current_src_type = $this->request_wrapper->retrieve(
387 self::F_ORIGINAL_SOURCE_TYPE,
392 $current_src_id =
null;
393 if ($this->request_wrapper->has(self::F_ORIGINAL_SOURCE_ID)) {
394 $current_src_id = $this->request_wrapper->retrieve(self::F_ORIGINAL_SOURCE_ID, $this->
refinery->kindlyTo()->int());
397 $search_recursive =
false;
398 if ($this->request_wrapper->has(self::F_SEARCH_RECURSIVE)) {
399 $search_recursive = $this->request_wrapper->retrieve(self::F_SEARCH_RECURSIVE, $this->
refinery->kindlyTo()->bool());
401 $form = $this->
getForm($current_src_type, $current_src_id, $search_recursive);
402 $form_id =
"form_" . $form->getId();
404 $modal = $this->ui_factory->modal()->roundtrip(
405 $this->
txt(
'modal_member_auto_select_title'),
406 $this->ui_factory->legacy()->content($form->getHtml())
409 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, $current_src_type);
410 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, $current_src_id);
411 $link = $this->
ctrl->getLinkTarget($this,
"nextStep",
"",
true);
412 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE,
null);
413 $this->
ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID,
null);
415 $replaceSignal = $modal->getReplaceSignal();
416 $signal_id = $replaceSignal->getId();
417 $f_selected_type = self::F_SOURCE_TYPE;
418 $f_selected_id = self::F_SOURCE_ID;
419 $submit = $this->ui_factory->button()->primary($this->
txt(
'search'),
"#")
421 function (
$id) use ($form_id, $link, $signal_id, $f_selected_type, $f_selected_id) {
423 "$('#$id').click(function() { 425 var checked = $(\"input[name='$f_selected_type']:checked\"). val(); 426 if(checked == 'orgu' || typeof(checked) == \"undefined\") { 427 console.log('$(\'#$form_id\').submit()'); 428 document.getElementById('$form_id').submit(); 432 var i_value = $(\"input[name='$f_selected_id\" + checked + \"']\"). val(); 433 if(i_value == '' || typeof(i_value) == \"undefined\") { 434 document.getElementById('$form_id').submit(); 438 n_url = '$link' + '&$f_selected_type=' + checked + '&$f_selected_id=' + i_value; 439 $('#$id').attr(\"onclick\", function(event) { 440 $(this).trigger('$signal_id', 442 'id' : '$signal_id', 'event' : 'click', 443 'triggerer' : $(this), 444 'options' : JSON.parse('{\"url\":\"' + n_url + '\"}') 454 $modal = $modal->withActionButtons([$submit])
455 ->withAdditionalOnLoadCode(
456 function (
$id) use ($form) {
458 $js = $form->getItemByPostVar($selector_post_var)->getOnloadCode();
459 return implode(
';', $js);
463 echo $this->ui_renderer->renderAsync($modal);
468 ?
string $source_type =
null,
469 ?
int $source_id =
null,
470 bool $search_recursive =
false 474 if (is_null($source_type)) {
478 $form->setId(uniqid($source_type . $source_id,
true));
479 $form->setFormAction($this->
ctrl->getFormAction($this,
'save'));
482 $rgroup->setValue($source_type);
483 $form->addItem($rgroup);
494 $radio_role->addSubItem($ni_role);
495 $rgroup->addOption($radio_role);
505 $radio_grp->addSubItem($ni_grp);
506 $rgroup->addOption($radio_grp);
516 $radio_crs->addSubItem($ni_crs);
517 $rgroup->addOption($radio_crs);
529 $orgu->getExplorerGUI()->setSelectableTypes([
"orgu"]);
530 $orgu->getExplorerGUI()->setTypeWhiteList([
"root",
"orgu"]);
532 $orgu->getExplorerGUI()->setAjax(
false);
533 $radio_orgu->addSubItem($orgu);
535 $recurse =
new ilCheckboxInputGUI($this->
txt(
'search_for_orgu_members_recursive'), self::F_SEARCH_RECURSIVE);
536 $recurse->setValue(
'1');
537 $recurse->setChecked($search_recursive);
538 $radio_orgu->addSubItem($recurse);
539 $rgroup->addOption($radio_orgu);
541 !is_null($source_type) &&
542 !is_null($source_id) &&
543 $source_type !==
"" &&
546 switch ($source_type) {
548 $ni_role->setValue($source_id);
551 $ni_grp->setValue($source_id);
554 $ni_crs->setValue($source_id);
557 $orgu->setValue($source_id);
564 $hi->setValue($source_type);
568 $hi->setValue((
string) $source_id ??
'');
575 string $selected_source_type,
576 string $selected_source,
577 ?
string $source_type =
null,
578 ?
string $source_id =
null 581 $form->setFormAction($this->
ctrl->getFormAction($this,
"save"));
585 $object_search->setFilter(array($selected_source_type));
586 $entries = $object_search->performSearch()->getEntries();
589 $this->
txt(
"prg_auto_member_select_" . $selected_source_type),
590 self::F_SOURCE_ID . $selected_source_type
592 $form->addItem($rgoup);
593 foreach ($entries as $entry) {
594 $obj_id = (
int) $entry[
'obj_id'];
598 $option =
new ilRadioOption($title, (
string) $obj_id, $description);
599 $rgoup->addOption($option);
603 $hi->setValue($source_type ??
'');
607 $hi->setValue((
string) $source_id);
611 $hi->setValue($selected_source_type);
624 $query_parser->setMinWordLength(1);
625 $query_parser->setGlobalMinLength(3);
626 $query_parser->parse();
628 if (!$query_parser->validate()) {
629 return $query_parser->getMessage();
631 return $query_parser;
639 $btn = $this->ui_factory->button()->primary($this->
txt(
'add_automembership_source'),
'')
640 ->withOnClick($add_cat_signal);
641 $this->
toolbar->addComponent($btn);
653 $items[] = $this->ui_factory->button()->shy($this->
txt(
'edit'),
'')
654 ->withOnClick($signal);
656 $this->
ctrl->setParameter($this, self::CHECKBOX_SOURCE_IDS, $src_id);
659 $items[] = $this->ui_factory->button()->shy(
660 $this->
txt(
'deactivate'),
661 $this->
ctrl->getLinkTarget($this, self::CMD_DISABLE)
664 $items[] = $this->ui_factory->button()->shy(
665 $this->
txt(
'activate'),
666 $this->
ctrl->getLinkTarget($this, self::CMD_ENABLE)
670 $items[] = $this->ui_factory->button()->shy(
671 $this->
txt(
'delete'),
672 $this->
ctrl->getLinkTarget($this, self::CMD_DELETE_CONFIRMATION)
675 $this->
ctrl->clearParameters($this);
677 return $this->ui_factory->dropdown()->standard($items);
683 $editor = implode(
' ', [
684 $username[
'firstname'],
685 $username[
'lastname'],
686 '(' . $username[
'login'] .
')' 689 $back_url = $this->
ctrl->getLinkTarget($this, self::CMD_VIEW);
690 $this->
ctrl->setParameterByClass(
'ilPublicUserProfileGUI',
'back_url', urlencode($back_url));
691 $this->
ctrl->setParameterByClass(
'ilPublicUserProfileGUI',
'user_id', $usr_id);
692 $url = $this->
ctrl->getLinkTargetByClass(
'ilPublicUserProfileGUI',
'view');
695 if (!$usr->hasPublicProfile()) {
696 $url = $this->
ctrl->getLinkTarget($this, self::CMD_PROFILE_NOT_PUBLIC);
698 return $this->ui_factory->link()->standard($editor,
$url);
711 if ($this->rbac_review->isGlobalRole($src_id)) {
712 $parent_ref = self::ROLEFOLDER_REF_ID;
713 $path = [
'ilAdministrationGUI'];
714 $this->
ctrl->setParameterByClass(
'ilObjRoleGUI',
'admin_mode',
'settings');
716 $parent_ref = $this->rbac_review->getObjectReferenceOfRole($src_id);
718 $path = [
'ilRepositoryGUI',
'ilObjCategoryGUI'];
719 if ($parent_type ==
'orgu') {
720 $path = [
'ilAdministrationGUI',
'ilObjOrgUnitGUI'];
722 $path[] =
'ilPermissionGUI';
724 $path[] =
'ilObjRoleGUI';
725 $this->
ctrl->setParameterByClass(
'ilObjRoleGUI',
'ref_id', $parent_ref);
726 $this->
ctrl->setParameterByClass(
'ilObjRoleGUI',
'obj_id', $src_id);
727 $url = $this->
ctrl->getLinkTargetByClass(
$path,
'userassignment');
728 $this->
ctrl->clearParametersByClass(
'ilObjRoleGUI');
737 static function (array
$c):
string {
740 $this->tree->getPathFull($src_id)
742 $hops = array_slice($hops, 1);
743 $title = implode(
' > ', $hops) ??
"-";
748 static function (array $c):
string {
751 $this->tree->getPathFull($src_id)
753 $hops = array_slice($hops, 3);
754 $title = implode(
' > ', $hops) ??
"-";
758 throw new LogicException(
"This should not happen. Forgot a case in the switch?");
761 return $this->ui_factory->link()->standard($title,
$url);
764 protected function txt(
string $code): string
766 return $this->
lng->txt($code);
This class represents an option in a radio group.
setParentGUI(ilContainerGUI $a_parent_gui)
Set this GUI's parent gui.
Interface Observer Contains several chained tasks and infos about them.
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
Class ilStudyProgrammeAutoMembershipsTableGUI.
static getInstanceByRefId($ref_id)
static _lookupName(int $a_user_id)
lookup user name
setRefId(int $prg_ref_id)
Set ref-id of StudyProgramme before using this GUI.
__construct(public ilGlobalTemplateInterface $tpl, public ilCtrl $ctrl, public ilToolbarGUI $toolbar, public ilLanguage $lng, public Factory $ui_factory, protected MessageBox\Factory $message_box_factory, protected Button\Factory $button_factory, protected Renderer $ui_renderer, protected Psr\Http\Message\ServerRequestInterface $request, protected ilTree $tree, protected ILIAS\HTTP\Wrapper\RequestWrapper $request_wrapper, protected ILIAS\Refinery\Factory $refinery, protected ilRbacReview $rbac_review)
Builds a Color from either hex- or rgb values.
getSelectionForm(string $selected_source_type, string $selected_source, ?string $source_type=null, ?string $source_id=null)
This describes commonalities between all types of Dropdowns.
view(bool $profile_not_public=false)
Render.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getItemAction(string $src_id, Signal $signal, bool $is_enabled)
static _lookupTitle(int $obj_id)
disable()
Disable single entry.
static _getStaticLink(?int $a_ref_id, string $a_type='', bool $a_fallback_goto=true, string $append="")
const CMD_GET_ASYNC_MODAL_OUTPUT
parseQueryString(string $string)
const CMD_PROFILE_NOT_PUBLIC
Class ilStudyProgrammeAutoMembershipSource.
static _lookupDescription(int $obj_id)
const CMD_DELETE_CONFIRMATION
getTitleRepresentation(ilStudyProgrammeAutoMembershipSource $ams)
getModal(?string $source_type=null, ?int $source_id=null, bool $search_recursive=false)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
ilObjStudyProgramme $object
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
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.
Class ilObjStudyProgrammeAutoMembershipsGUI.
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
getForm(?string $source_type=null, ?int $source_id=null, bool $search_recursive=false)
const F_ORIGINAL_SOURCE_TYPE
static _lookupType(int $id, bool $reference=false)
const F_ORIGINAL_SOURCE_ID
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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