3 declare(strict_types = 1);
106 $this->toolbar = $ilToolbar;
122 $cmd = $this->ctrl->getCmd();
125 case self::CMD_DELETE:
126 case self::CMD_DELETE_CONFIRMATION:
127 case self::CMD_DISABLE:
128 case self::CMD_GET_ASYNC_MODAL_OUTPUT:
129 case self::CMD_NEXT_STEP:
133 case self::CMD_ENABLE:
135 $this->ctrl->redirect($this, self::CMD_VIEW);
137 case self::CMD_PROFILE_NOT_PUBLIC:
142 "ilObjStudyProgrammeAutoMembershipsGUI: " .
143 "Command not supported: $cmd" 150 $current_src_type = null;
152 array_key_exists(self::F_ORIGINAL_SOURCE_TYPE,
$_GET) &&
153 !is_null(
$_GET[self::F_ORIGINAL_SOURCE_TYPE])
155 $current_src_type =
$_GET[self::F_ORIGINAL_SOURCE_TYPE];
157 $current_src_id = null;
159 array_key_exists(self::F_ORIGINAL_SOURCE_ID,
$_GET) &&
160 !is_null(
$_GET[self::F_ORIGINAL_SOURCE_ID])
162 $current_src_id = (int)
$_GET[self::F_ORIGINAL_SOURCE_ID];
165 $selected_src_type =
$_GET[self::F_SOURCE_TYPE];
166 $selected_src =
$_GET[self::F_SOURCE_ID];
174 $form_id =
"form_" . $form->getId();
176 $modal = $this->ui_factory->modal()->roundtrip(
177 $this->
txt(
'modal_member_auto_select_title'),
178 $this->ui_factory->legacy($form->getHtml())
181 $submit = $this->ui_factory->button()->primary($this->
txt(
'save'),
"#")->withOnLoadCode(
182 function ($id) use ($form_id) {
183 return "$('#{$id}').click(function() { $('#{$form_id}').submit(); return false; });";
187 $modal = $modal->withActionButtons([$submit]);
189 echo $this->ui_renderer->renderAsync($modal);
196 protected function view(
bool $profile_not_public =
false)
198 if ($profile_not_public) {
201 $collected_modals = [];
204 $collected_modals[] = $modal;
206 foreach ($this->
getObject()->getAutomaticMembershipSources() as $ams) {
209 $modal = $this->
getModal($ams->getSourceType(), $ams->getSourceId());
210 $collected_modals[] = $modal;
212 $src_id = $ams->getSourceType() .
'-' . $ams->getSourceId();
215 $modal->getShowSignal(),
221 $this->ui_renderer->render($title),
222 $this->ui_renderer->render($usr),
223 $this->ui_renderer->render($actions)
227 $table->setData(
$data);
228 $this->tpl->setContent(
229 $this->ui_renderer->render($collected_modals)
238 $form->setValuesByPost();
240 $post = $this->request->getParsedBody();
241 $src_type = $post[self::F_SOURCE_TYPE];
242 $src_id = $post[self::F_SOURCE_ID . $src_type];
245 (is_null($src_type) || $src_type ==
"") ||
246 (is_null($src_id) || $src_id == 0)
249 $this->ctrl->redirect($this, self::CMD_VIEW);
253 if (in_array($src_type, self::$switch_to_ref_id)) {
254 $src_id = (int) array_shift(
260 array_key_exists(self::F_ORIGINAL_SOURCE_TYPE, $post) &&
261 array_key_exists(self::F_ORIGINAL_SOURCE_ID, $post)
263 $this->
getObject()->deleteAutomaticMembershipSource(
264 (
string) $post[self::F_ORIGINAL_SOURCE_TYPE],
265 (
int) $post[self::F_ORIGINAL_SOURCE_ID]
269 $this->
getObject()->storeAutomaticMembershipSource($src_type, (
int) $src_id);
270 $this->ctrl->redirect($this, self::CMD_VIEW);
275 $get = $this->request->getQueryParams();
276 $post = $this->request->getParsedBody();
277 $field = self::CHECKBOX_SOURCE_IDS;
279 $field_ids_in_get = array_key_exists($field, $get);
280 $field_ids_in_post = array_key_exists($field, $post);
282 if ($field_ids_in_get) {
283 $type_ids = $get[$field];
284 $msg = $this->lng->txt(
'prg_delete_single_confirmation');
285 } elseif ($field_ids_in_post) {
286 $type_ids = implode(
' ', $post[$field]);
287 $msg = $this->lng->txt(
'prg_delete_confirmation');
290 $this->ctrl->redirect($this, self::CMD_VIEW);
293 $type_ids = base64_encode($type_ids);
295 $this->ctrl->setParameterByClass(self::class, $field, $type_ids);
296 $delete = $this->ctrl->getFormActionByClass(self::class, self::CMD_DELETE);
297 $cancel = $this->ctrl->getFormActionByClass(self::class, self::CMD_VIEW);
298 $this->ctrl->clearParameterByClass(self::class, $field);
301 $this->button_factory->standard($this->lng->txt(
'prg_confirm_delete'), $delete),
302 $this->button_factory->standard($this->lng->txt(
'prg_cancel'), $cancel)
305 $message_box = $this->message_box_factory->confirmation($msg)->withButtons($buttons);
307 $this->tpl->setContent($this->ui_renderer->render($message_box));
310 protected function delete()
312 $field = self::CHECKBOX_SOURCE_IDS;
313 $get = $this->request->getQueryParams();
315 if (!array_key_exists($field, $get)) {
317 $this->ctrl->redirect($this, self::CMD_VIEW);
320 $type_ids = base64_decode($get[$field]);
321 $type_ids = explode(
' ', trim($type_ids));
323 foreach ($type_ids as $src_id) {
324 [
$type, $id] = explode(
'-', $src_id);
325 $this->
getObject()->deleteAutomaticMembershipSource((
string)
$type, (
int) $id);
328 $msg = $this->lng->txt(
'prg_delete_single_success');
329 if (count($type_ids) > 1) {
330 $msg = $this->lng->txt(
'prg_delete_success');
333 ilUtil::sendSuccess($msg,
true);
334 $this->ctrl->redirect($this, self::CMD_VIEW);
342 $get = $this->request->getQueryParams();
343 $field = self::CHECKBOX_SOURCE_IDS;
344 if (array_key_exists($field, $get)) {
345 [
$type, $id] = explode(
'-', $get[$field]);
346 $this->
getObject()->enableAutomaticMembershipSource((
string)
$type, (
int) $id);
348 $this->ctrl->redirect($this, self::CMD_VIEW);
356 $get = $this->request->getQueryParams();
357 $field = self::CHECKBOX_SOURCE_IDS;
358 if (array_key_exists($field, $get)) {
359 [
$type, $id] = explode(
'-', $get[$field]);
360 $this->
getObject()->disableAutomaticMembershipSource((
string)
$type, (
int) $id);
362 $this->ctrl->redirect($this, self::CMD_VIEW);
379 $this->parent_gui = $a_parent_gui;
388 if ($this->
object === null ||
397 string $source_type = null,
398 int $source_id = null
400 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, $source_type);
401 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, $source_id);
402 $link = $this->ctrl->getLinkTarget($this,
"getAsynchModalOutput",
"",
true);
403 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, null);
404 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, null);
406 $modal = $this->ui_factory->modal()->roundtrip(
409 )->withAsyncRenderUrl(
418 $current_src_type = null;
420 array_key_exists(self::F_ORIGINAL_SOURCE_TYPE,
$_GET) &&
421 !is_null(
$_GET[self::F_ORIGINAL_SOURCE_TYPE])
423 $current_src_type =
$_GET[self::F_ORIGINAL_SOURCE_TYPE];
425 $current_src_id = null;
427 array_key_exists(self::F_ORIGINAL_SOURCE_ID,
$_GET) &&
428 !is_null(
$_GET[self::F_ORIGINAL_SOURCE_ID])
430 $current_src_id = (int)
$_GET[self::F_ORIGINAL_SOURCE_ID];
432 $form = $this->
getForm($current_src_type, $current_src_id);
433 $form_id =
"form_" . $form->getId();
435 $modal = $this->ui_factory->modal()->roundtrip(
436 $this->
txt(
'modal_member_auto_select_title'),
437 $this->ui_factory->legacy($form->getHtml())
440 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, $current_src_type);
441 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, $current_src_id);
442 $link = $this->ctrl->getLinkTarget($this,
"nextStep",
"",
true);
443 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, null);
444 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, null);
446 $replaceSignal = $modal->getReplaceSignal();
447 $signal_id = $replaceSignal->getId();
448 $f_selected_type = self::F_SOURCE_TYPE;
449 $f_selected_id = self::F_SOURCE_ID;
450 $submit = $this->ui_factory->button()->primary($this->
txt(
'search'),
"#")->withOnLoadCode(
451 function ($id) use ($form_id, $link, $signal_id, $f_selected_type, $f_selected_id) {
453 "$('#{$id}').click(function() { 454 var checked = $(\"input[name='{$f_selected_type}']:checked\"). val(); 455 if(checked == 'orgu' || typeof(checked) == \"undefined\") { 456 $('#{$form_id}').submit(); 460 var i_value = $(\"input[name='{$f_selected_id}\" + checked + \"']\"). val(); 461 if(i_value == '' || typeof(i_value) == \"undefined\") { 462 $('#{$form_id}').submit(); 466 n_url = '{$link}' + '&{$f_selected_type}=' + checked + '&{$f_selected_id}=' + i_value; 467 $('#{$id}').attr(\"onclick\", function(event) { 468 $(this).trigger('{$signal_id}', 470 'id' : '{$signal_id}', 'event' : 'click', 471 'triggerer' : $(this), 472 'options' : JSON.parse('{\"url\":\"' + n_url + '\"}') 483 $modal = $modal->withActionButtons([$submit]);
485 echo $this->ui_renderer->renderAsync($modal);
490 string $source_type = null,
491 int $source_id = null
495 if (is_null($source_type)) {
498 if (is_null($source_id)) {
501 $form->setId(uniqid((
string) $source_type . (
string) $source_id));
502 $form->setFormAction($this->ctrl->getFormAction($this,
'save'));
505 $rgroup->setValue($source_type);
506 $form->addItem($rgroup);
517 $radio_role->addSubItem($ni_role);
518 $rgroup->addOption($radio_role);
528 $radio_grp->addSubItem($ni_grp);
529 $rgroup->addOption($radio_grp);
539 $radio_crs->addSubItem($ni_crs);
540 $rgroup->addOption($radio_crs);
551 $orgu->getExplorerGUI()->setSelectableTypes([
"orgu"]);
552 $orgu->getExplorerGUI()->setTypeWhiteList([
"root",
"orgu"]);
555 $orgu->getExplorerGUI()->setAjax(
false);
556 $radio_orgu->addSubItem($orgu);
557 $rgroup->addOption($radio_orgu);
560 !is_null($source_type) &&
561 !is_null($source_id) &&
562 $source_type !==
"" &&
565 switch ($source_type) {
567 $ni_role->setValue($source_id);
570 $ni_grp->setValue($source_id);
573 $ni_crs->setValue($source_id);
576 $orgu->setValue($source_id);
583 $hi->setValue($source_type);
587 $hi->setValue($source_id);
594 string $selected_source_type,
595 string $selected_source,
596 string $source_type = null,
597 int $source_id = null
600 $form->setFormAction($this->ctrl->getFormAction($this,
"save"));
603 include_once
'Services/Search/classes/Like/class.ilLikeObjectSearch.php';
605 $object_search->setFilter(array($selected_source_type));
606 $entries = $object_search->performSearch()->getEntries();
609 $this->
txt(
"prg_auto_member_select_" . $selected_source_type),
610 self::F_SOURCE_ID . $selected_source_type
612 $form->addItem($rgoup);
613 foreach ($entries as $entry) {
614 $obj_id = $entry[
'obj_id'];
619 $rgoup->addOption($option);
623 $hi->setValue($source_type);
627 $hi->setValue($source_id);
631 $hi->setValue($selected_source_type);
637 protected function parseQueryString($a_string, $a_combination_or =
true, $a_ignore_length =
false)
641 $query_parser->setMinWordLength(1);
644 if (!(
bool) $a_ignore_length) {
645 $query_parser->setGlobalMinLength(3);
648 $query_parser->parse();
650 if (!$query_parser->validate()) {
651 return $query_parser->getMessage();
653 return $query_parser;
658 if ($this->stored ==
false) {
659 $this->result_obj->mergeEntries($new_res);
660 $this->stored =
true;
663 $this->result_obj->intersectEntries($new_res);
673 $btn = $this->ui_factory->button()->primary($this->
txt(
'add_automembership_source'),
'')
674 ->withOnClick($add_cat_signal);
675 $this->toolbar->addComponent($btn);
687 $items[] = $this->ui_factory->button()->shy($this->
txt(
'edit'),
'')
690 $this->ctrl->setParameter($this, self::CHECKBOX_SOURCE_IDS, $src_id);
693 $items[] = $this->ui_factory->button()->shy(
694 $this->
txt(
'disable'),
695 $this->ctrl->getLinkTarget($this, self::CMD_DISABLE)
698 $items[] = $this->ui_factory->button()->shy(
699 $this->
txt(
'enable'),
700 $this->ctrl->getLinkTarget($this, self::CMD_ENABLE)
704 $items[] = $this->ui_factory->button()->shy(
705 $this->
txt(
'delete'),
706 $this->ctrl->getLinkTarget($this, self::CMD_DELETE_CONFIRMATION)
709 $this->ctrl->clearParameters($this);
711 $dd = $this->ui_factory->dropdown()->standard($items);
718 $editor = implode(
' ', [
719 $username[
'firstname'],
720 $username[
'lastname'],
721 '(' . $username[
'login'] .
')' 726 if (!$usr->hasPublicProfile()) {
727 $url = $this->ctrl->getLinkTarget($this, self::CMD_PROFILE_NOT_PUBLIC);
729 return $this->ui_factory->link()->standard($editor,
$url);
743 $this->ctrl->setParameterByClass(
'ilObjRoleGUI',
'obj_id', $src_id);
744 $this->ctrl->setParameterByClass(
'ilObjRoleGUI',
'ref_id', self::ROLEFOLDER_REF_ID);
745 $this->ctrl->setParameterByClass(
'ilObjRoleGUI',
'admin_mode',
'settings');
746 $url = $this->ctrl->getLinkTargetByClass([
'ilAdministrationGUI',
'ilObjRoleGUI'],
'userassignment');
747 $this->ctrl->clearParametersByClass(
'ilObjRoleGUI');
756 $this->tree->getPathFull($src_id)
758 $hops = array_slice($hops, 1);
759 $title = implode(
' > ', $hops) ??
"-";
767 $this->tree->getPathFull($src_id)
769 $hops = array_slice($hops, 3);
770 $title = implode(
' > ', $hops) ??
"-";
774 throw new \LogicException(
"This should not happen. Forgot a case in the switch?");
777 return $this->ui_factory->link()->standard($title,
$url);
780 protected function txt(
string $code) : string
782 return $this->lng->txt($code);
static _lookupName($a_user_id)
lookup user name
This class represents an option in a radio group.
An entity that renders components to a string output.
This class provides processing control methods.
setParentGUI(ilContainerGUI $a_parent_gui)
Set this GUI's parent gui.
getSelectionForm(string $selected_source_type, string $selected_source, string $source_type=null, int $source_id=null)
Class ChatMainBarProvider .
enable()
Enable single entry.
static _getStaticLink( $a_ref_id, $a_type='', $a_fallback_goto=true, $append="")
Get static link.
const CHECKBOX_SOURCE_IDS
Class ilStudyProgrammeAutoMembershipsTableGUI.
static _lookupTitle($a_id)
lookup object title
setRefId(int $prg_ref_id)
Set ref-id of StudyProgramme before using this GUI.
static _getAllReferences($a_id)
get all reference ids of object
getToolbar(\ILIAS\UI\Component\Signal $add_cat_signal)
Setup toolbar.
view(bool $profile_not_public=false)
Render.
static getInstanceByRefId($a_ref_id)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
addJavaScript($a_js_file, $a_add_version_parameter=true, $a_batch=2)
Add a javascript file that should be included in the header.
__construct(ilGlobalTemplateInterface $tpl, ilCtrl $ilCtrl, ilToolbarGUI $ilToolbar, ilLanguage $lng, Factory $ui_factory, MessageBox\Factory $message_box_factory, Button\Factory $button_factory, Renderer $ui_renderer, ServerRequest $request, ilTree $tree)
static _lookupDescription($a_id)
lookup object description
disable()
Disable single entry.
const CMD_GET_ASYNC_MODAL_OUTPUT
const CMD_PROFILE_NOT_PUBLIC
Class ilStudyProgrammeAutoMembershipSource.
getForm(string $source_type=null, int $source_id=null)
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
const CMD_DELETE_CONFIRMATION
getTitleRepresentation(ilStudyProgrammeAutoMembershipSource $ams)
getModal(string $source_type=null, int $source_id=null)
Class ilObjStudyProgrammeAutoMembershipsGUI.
const F_ORIGINAL_SOURCE_TYPE
const F_ORIGINAL_SOURCE_ID
parseQueryString($a_string, $a_combination_or=true, $a_ignore_length=false)
getObject()
Get current StudyProgramme-object.
getUserRepresentation(int $usr_id)
getItemAction(string $src_id, \ILIAS\UI\Component\Signal $signal, bool $is_enabled)
__storeEntries(&$new_res)