3 declare(strict_types=1);
32 $post_wrapper = $DIC->http()->wrapper()->post();
34 $class = $this->callback[
'class'];
35 $method = $this->callback[
'method'];
39 $class->$method($post_wrapper->retrieve(
'user',
$refinery->kindlyTo()->listOf(
$refinery->kindlyTo()->string())));
55 $ilToolbar = $DIC[
'ilToolbar'];
57 $ilCtrl = $DIC[
'ilCtrl'];
61 $toolbar = $ilToolbar;
65 if (!isset($a_options[
'auto_complete_name'])) {
66 $a_options[
'auto_complete_name'] =
$lng->
txt(
'obj_user');
68 if (!isset($a_options[
'auto_complete_size'])) {
69 $a_options[
'auto_complete_size'] = 15;
71 if (!isset($a_options[
'submit_name'])) {
72 $a_options[
'submit_name'] =
$lng->
txt(
'btn_add');
75 $ajax_url = $ilCtrl->getLinkTargetByClass(
76 array(get_class($parent_object),
'ilStudyProgrammeRepositorySearchGUI'),
83 $ul =
new ilTextInputGUI($a_options[
'auto_complete_name'],
'user_login');
84 $ul->setDataSource($ajax_url);
85 $ul->setSize($a_options[
'auto_complete_size']);
87 $toolbar->addInputItem($ul,
true);
89 $toolbar->addStickyItem($ul,
true);
92 if (count($a_options[
'user_type'] ?? [])) {
94 $si->setOptions($a_options[
'user_type']);
96 $toolbar->addInputItem($si);
98 $toolbar->addStickyItem($si);
103 $button->setCaption($a_options[
'submit_name'],
false);
104 $button->setCommand(
'addUserFromAutoComplete');
106 $toolbar->addButtonInstance($button);
108 $toolbar->addStickyItem($button);
111 if ((
bool) $a_options[
'add_search'] ||
112 is_numeric($a_options[
'add_from_container'])) {
115 $toolbar->addSeparator();
117 if ((
bool) $a_options[
'add_search']) {
119 $button->setCaption(
"search_users");
120 $button->setUrl($ilCtrl->getLinkTargetByClass(
'ilStudyProgrammeRepositorySearchGUI',
''));
121 $toolbar->addButtonInstance($button);
124 if (isset($a_options[
'add_from_container']) && is_numeric($a_options[
'add_from_container'])) {
125 $parent_ref_id = (
int) $a_options[
'add_from_container'];
127 $parent_container_type =
"grp";
128 if (!$parent_container_ref_id) {
130 $parent_container_type =
"crs";
132 if ($parent_container_ref_id) {
133 if ((
bool) $a_options[
'add_search']) {
134 $toolbar->addSpacer();
137 $ilCtrl->setParameterByClass(
138 'ilStudyProgrammeRepositorySearchGUI',
144 $button->setCaption(
"search_add_members_from_container_" . $parent_container_type);
146 $ilCtrl->getLinkTargetByClass(
147 array(get_class($parent_object),
'ilStudyProgrammeRepositorySearchGUI'),
151 $toolbar->addButtonInstance($button);
156 $toolbar->setFormAction(
157 $ilCtrl->getFormActionByClass(
159 get_class($parent_object),
160 'ilStudyProgrammeRepositorySearchGUI')
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
loadLanguageModule(string $a_module)
Load language module.
static fillAutoCompleteToolbar( $parent_object, ilToolbarGUI $toolbar=null, $a_options=array(), $a_sticky=false)
This is just the same as in the parent class, except for the hardcoded class name.
static _lookupObjId(int $ref_id)
checkForParentType(int $a_ref_id, string $a_type, bool $a_exclude_source_check=false)
Check for parent type e.g check if a folder (ref_id 3) is in a parent course obj => checkForParentTyp...
RefineryFactory $refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...