3 declare(strict_types = 1);
105 $this->ctrl = $ilCtrl;
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(
'add'),
"#")->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 ilUtil::sendSuccess($this->
txt(
"auto_add_success"),
true);
271 $this->ctrl->redirect($this, self::CMD_VIEW);
276 $get = $this->request->getQueryParams();
277 $post = $this->request->getParsedBody();
278 $field = self::CHECKBOX_SOURCE_IDS;
280 $field_ids_in_get = array_key_exists($field, $get);
281 $field_ids_in_post = array_key_exists($field, $post);
283 if ($field_ids_in_get) {
284 $type_ids = $get[$field];
285 $msg = $this->lng->txt(
'prg_delete_single_confirmation');
286 } elseif ($field_ids_in_post) {
287 $type_ids = implode(
' ', $post[$field]);
288 $msg = $this->lng->txt(
'prg_delete_confirmation');
291 $this->ctrl->redirect($this, self::CMD_VIEW);
294 $type_ids = base64_encode($type_ids);
296 $this->ctrl->setParameterByClass(self::class, $field, $type_ids);
297 $delete = $this->ctrl->getFormActionByClass(self::class, self::CMD_DELETE);
298 $cancel = $this->ctrl->getFormActionByClass(self::class, self::CMD_VIEW);
299 $this->ctrl->clearParameterByClass(self::class, $field);
302 $this->button_factory->standard($this->lng->txt(
'prg_confirm_delete'), $delete),
303 $this->button_factory->standard($this->lng->txt(
'prg_cancel'), $cancel)
306 $message_box = $this->message_box_factory->confirmation($msg)->withButtons($buttons);
308 $this->tpl->setContent($this->ui_renderer->render($message_box));
311 protected function delete()
313 $field = self::CHECKBOX_SOURCE_IDS;
314 $get = $this->request->getQueryParams();
316 if (!array_key_exists($field, $get)) {
318 $this->ctrl->redirect($this, self::CMD_VIEW);
321 $type_ids = base64_decode($get[$field]);
322 $type_ids = explode(
' ', trim($type_ids));
324 foreach ($type_ids as $src_id) {
325 [
$type, $id] = explode(
'-', $src_id);
326 $this->
getObject()->deleteAutomaticMembershipSource((
string)
$type, (
int) $id);
329 $msg = $this->lng->txt(
'prg_delete_single_success');
330 if (count($type_ids) > 1) {
331 $msg = $this->lng->txt(
'prg_delete_success');
334 ilUtil::sendSuccess($msg,
true);
335 $this->ctrl->redirect($this, self::CMD_VIEW);
343 $get = $this->request->getQueryParams();
344 $field = self::CHECKBOX_SOURCE_IDS;
345 if (array_key_exists($field, $get)) {
346 [
$type, $id] = explode(
'-', $get[$field]);
347 $this->
getObject()->enableAutomaticMembershipSource((
string)
$type, (
int) $id);
349 $this->ctrl->redirect($this, self::CMD_VIEW);
357 $get = $this->request->getQueryParams();
358 $field = self::CHECKBOX_SOURCE_IDS;
359 if (array_key_exists($field, $get)) {
360 [
$type, $id] = explode(
'-', $get[$field]);
361 $this->
getObject()->disableAutomaticMembershipSource((
string)
$type, (
int) $id);
363 $this->ctrl->redirect($this, self::CMD_VIEW);
380 $this->parent_gui = $a_parent_gui;
389 if ($this->
object === null ||
398 string $source_type = null,
399 int $source_id = null
401 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, $source_type);
402 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, $source_id);
403 $link = $this->ctrl->getLinkTarget($this,
"getAsynchModalOutput",
"",
true);
404 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, null);
405 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, null);
407 $modal = $this->ui_factory->modal()->roundtrip(
410 )->withAsyncRenderUrl(
419 $current_src_type = null;
421 array_key_exists(self::F_ORIGINAL_SOURCE_TYPE,
$_GET) &&
422 !is_null(
$_GET[self::F_ORIGINAL_SOURCE_TYPE])
424 $current_src_type =
$_GET[self::F_ORIGINAL_SOURCE_TYPE];
426 $current_src_id = null;
428 array_key_exists(self::F_ORIGINAL_SOURCE_ID,
$_GET) &&
429 !is_null(
$_GET[self::F_ORIGINAL_SOURCE_ID])
431 $current_src_id = (int)
$_GET[self::F_ORIGINAL_SOURCE_ID];
433 $form = $this->
getForm($current_src_type, $current_src_id);
434 $form_id =
"form_" . $form->getId();
436 $modal = $this->ui_factory->modal()->roundtrip(
437 $this->
txt(
'modal_member_auto_select_title'),
438 $this->ui_factory->legacy($form->getHtml())
441 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, $current_src_type);
442 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, $current_src_id);
443 $link = $this->ctrl->getLinkTarget($this,
"nextStep",
"",
true);
444 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_TYPE, null);
445 $this->ctrl->setParameter($this, self::F_ORIGINAL_SOURCE_ID, null);
447 $replaceSignal = $modal->getReplaceSignal();
448 $signal_id = $replaceSignal->getId();
449 $f_selected_type = self::F_SOURCE_TYPE;
450 $f_selected_id = self::F_SOURCE_ID;
451 $submit = $this->ui_factory->button()->primary($this->
txt(
'search'),
"#")->withOnLoadCode(
452 function ($id) use ($form_id, $link, $signal_id, $f_selected_type, $f_selected_id) {
454 "$('#{$id}').click(function() { 455 var checked = $(\"input[name='{$f_selected_type}']:checked\"). val(); 456 if(checked == 'orgu' || typeof(checked) == \"undefined\") { 457 $('#{$form_id}').submit(); 461 var i_value = $(\"input[name='{$f_selected_id}\" + checked + \"']\"). val(); 462 if(i_value == '' || typeof(i_value) == \"undefined\") { 463 $('#{$form_id}').submit(); 467 n_url = '{$link}' + '&{$f_selected_type}=' + checked + '&{$f_selected_id}=' + i_value; 468 $('#{$id}').attr(\"onclick\", function(event) { 469 $(this).trigger('{$signal_id}', 471 'id' : '{$signal_id}', 'event' : 'click', 472 'triggerer' : $(this), 473 'options' : JSON.parse('{\"url\":\"' + n_url + '\"}') 484 $modal = $modal->withActionButtons([$submit]);
486 echo $this->ui_renderer->renderAsync($modal);
491 string $source_type = null,
492 int $source_id = null
496 if (is_null($source_type)) {
499 if (is_null($source_id)) {
502 $form->setId(uniqid((
string) $source_type . (
string) $source_id));
503 $form->setFormAction($this->ctrl->getFormAction($this,
'save'));
506 $rgroup->setValue($source_type);
507 $form->addItem($rgroup);
518 $radio_role->addSubItem($ni_role);
519 $rgroup->addOption($radio_role);
529 $radio_grp->addSubItem($ni_grp);
530 $rgroup->addOption($radio_grp);
540 $radio_crs->addSubItem($ni_crs);
541 $rgroup->addOption($radio_crs);
552 $orgu->getExplorerGUI()->setSelectableTypes([
"orgu"]);
553 $orgu->getExplorerGUI()->setTypeWhiteList([
"root",
"orgu"]);
556 $orgu->getExplorerGUI()->setAjax(
false);
557 $radio_orgu->addSubItem($orgu);
558 $rgroup->addOption($radio_orgu);
561 !is_null($source_type) &&
562 !is_null($source_id) &&
563 $source_type !==
"" &&
566 switch ($source_type) {
568 $ni_role->setValue($source_id);
571 $ni_grp->setValue($source_id);
574 $ni_crs->setValue($source_id);
577 $orgu->setValue($source_id);
584 $hi->setValue($source_type);
588 $hi->setValue($source_id);
595 string $selected_source_type,
596 string $selected_source,
597 string $source_type = null,
598 int $source_id = null
601 $form->setFormAction($this->ctrl->getFormAction($this,
"save"));
604 include_once
'Services/Search/classes/Like/class.ilLikeObjectSearch.php';
606 $object_search->setFilter(array($selected_source_type));
607 $entries = $object_search->performSearch()->getEntries();
610 $this->
txt(
"prg_auto_member_select_" . $selected_source_type),
611 self::F_SOURCE_ID . $selected_source_type
613 $form->addItem($rgoup);
614 foreach ($entries as $entry) {
615 $obj_id = $entry[
'obj_id'];
620 $rgoup->addOption($option);
624 $hi->setValue($source_type);
628 $hi->setValue($source_id);
632 $hi->setValue($selected_source_type);
638 protected function parseQueryString($a_string, $a_combination_or =
true, $a_ignore_length =
false)
642 $query_parser->setMinWordLength(1);
645 if (!(
bool) $a_ignore_length) {
646 $query_parser->setGlobalMinLength(3);
649 $query_parser->parse();
651 if (!$query_parser->validate()) {
652 return $query_parser->getMessage();
654 return $query_parser;
659 if ($this->stored ==
false) {
660 $this->result_obj->mergeEntries($new_res);
661 $this->stored =
true;
664 $this->result_obj->intersectEntries($new_res);
674 $btn = $this->ui_factory->button()->primary($this->
txt(
'add_automembership_source'),
'')
675 ->withOnClick($add_cat_signal);
676 $this->toolbar->addComponent($btn);
688 $items[] = $this->ui_factory->button()->shy($this->
txt(
'edit'),
'')
691 $this->ctrl->setParameter($this, self::CHECKBOX_SOURCE_IDS, $src_id);
694 $items[] = $this->ui_factory->button()->shy(
695 $this->
txt(
'deactivate'),
696 $this->ctrl->getLinkTarget($this, self::CMD_DISABLE)
699 $items[] = $this->ui_factory->button()->shy(
700 $this->
txt(
'activate'),
701 $this->ctrl->getLinkTarget($this, self::CMD_ENABLE)
705 $items[] = $this->ui_factory->button()->shy(
706 $this->
txt(
'delete'),
707 $this->ctrl->getLinkTarget($this, self::CMD_DELETE_CONFIRMATION)
710 $this->ctrl->clearParameters($this);
712 $dd = $this->ui_factory->dropdown()->standard($items);
719 $editor = implode(
' ', [
720 $username[
'firstname'],
721 $username[
'lastname'],
722 '(' . $username[
'login'] .
')' 727 if (!$usr->hasPublicProfile()) {
728 $url = $this->ctrl->getLinkTarget($this, self::CMD_PROFILE_NOT_PUBLIC);
730 return $this->ui_factory->link()->standard($editor,
$url);
744 $this->ctrl->setParameterByClass(
'ilObjRoleGUI',
'obj_id', $src_id);
745 $this->ctrl->setParameterByClass(
'ilObjRoleGUI',
'ref_id', self::ROLEFOLDER_REF_ID);
746 $this->ctrl->setParameterByClass(
'ilObjRoleGUI',
'admin_mode',
'settings');
747 $url = $this->ctrl->getLinkTargetByClass([
'ilAdministrationGUI',
'ilObjRoleGUI'],
'userassignment');
748 $this->ctrl->clearParametersByClass(
'ilObjRoleGUI');
760 $this->tree->getPathFull($src_id)
762 $hops = array_slice($hops, 1);
763 $title = implode(
' > ', $hops) ??
"-";
771 $this->tree->getPathFull($src_id)
773 $hops = array_slice($hops, 3);
774 $title = implode(
' > ', $hops) ??
"-";
778 throw new \LogicException(
"This should not happen. Forgot a case in the switch?");
781 return $this->ui_factory->link()->standard($title,
$url);
784 protected function txt(
string $code) : string
786 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
Builds a Color from either hex- or rgb values.
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 QP_COMBINATION_AND
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)