35 include_once
'Services/Search/classes/class.ilSearchResult.php';
36 include_once
'Services/Search/classes/class.ilSearchSettings.php';
37 include_once
'./Services/User/classes/class.ilUserAccountSettings.php';
38 include_once
'Services/Search/classes/class.ilQueryParser.php';
64 $this->lng->loadLanguageModule(
'search');
65 $this->lng->loadLanguageModule(
'crs');
67 $this->
setTitle($this->lng->txt(
'add_members_header'));
73 $this->result_obj->setMaxHits(1000000);
84 $this->search_title = $a_title;
102 $this->searchable_check = $a_status;
134 $toolbar = $ilToolbar;
138 if(!isset($a_options[
'auto_complete_name']))
140 $a_options[
'auto_complete_name'] = $lng->txt(
'obj_user');
142 if(!isset($a_options[
'auto_complete_size']))
144 $a_options[
'auto_complete_size'] = 15;
146 if(!isset($a_options[
'submit_name']))
148 $a_options[
'submit_name'] = $lng->txt(
'btn_add');
151 $ajax_url = $ilCtrl->getLinkTargetByClass(array(get_class($parent_object),
'ilRepositorySearchGUI'),
152 'doUserAutoComplete',
'',
true);
154 include_once(
"./Services/Form/classes/class.ilTextInputGUI.php");
155 $ul =
new ilTextInputGUI($a_options[
'auto_complete_name'],
'user_login');
156 $ul->setDataSource($ajax_url);
157 $ul->setSize($a_options[
'auto_complete_size']);
158 $toolbar->addInputItem($ul,
true);
160 if(count((array) $a_options[
'user_type']))
162 include_once
'./Services/Form/classes/class.ilSelectInputGUI.php';
164 $si->setOptions($a_options[
'user_type']);
165 $toolbar->addInputItem(
$si);
168 $toolbar->addFormButton(
169 $a_options[
'submit_name'],
170 'addUserFromAutoComplete' 173 if((
bool)$a_options[
'add_search'] ||
174 is_numeric($a_options[
'add_from_container']))
176 $lng->loadLanguageModule(
"search");
178 $toolbar->addSeparator();
180 if((
bool)$a_options[
'add_search'])
183 $lng->txt(
"search_users"),
184 $ilCtrl->getLinkTargetByClass(
'ilRepositorySearchGUI',
''));
187 if(is_numeric($a_options[
'add_from_container']))
189 $parent_ref_id = (int)$a_options[
'add_from_container'];
190 $parent_container_ref_id = $tree->checkForParentType($parent_ref_id,
"grp");
191 $parent_container_type =
"grp";
192 if(!$parent_container_ref_id)
194 $parent_container_ref_id = $tree->checkForParentType($parent_ref_id,
"crs");
195 $parent_container_type =
"crs";
197 if($parent_container_ref_id)
199 if((
bool)$a_options[
'add_search'])
201 $toolbar->addSpacer();
204 $ilCtrl->setParameterByClass(
'ilRepositorySearchGUI',
"list_obj",
ilObject::_lookupObjId($parent_container_ref_id));
207 $lng->txt(
"search_add_members_from_container_".$parent_container_type),
208 $ilCtrl->getLinkTargetByClass(array(get_class($parent_object),
'ilRepositorySearchGUI'),
'listUsers')
214 $toolbar->setFormAction(
215 $ilCtrl->getFormActionByClass(
217 get_class($parent_object),
218 'ilRepositorySearchGUI')
231 if(!isset(
$_GET[
'autoCompleteField']))
233 $a_fields = array(
'login',
'firstname',
'lastname',
'email');
234 $result_field =
'login';
238 $a_fields = array((
string)
$_GET[
'autoCompleteField']);
239 $result_field = (string) $_GET[
'autoCompleteField'];
242 $GLOBALS[
'ilLog']->write(print_r($a_fields,
true));
243 include_once
'./Services/User/classes/class.ilUserAutoComplete.php';
245 $auto->setSearchFields($a_fields);
246 $auto->setResultField($result_field);
247 $auto->enableFieldSearchableCheck(
true);
259 $_SESSION[
'search'][
'string'] = $this->
string = $a_str;
263 return $this->string;
274 $next_class = $this->ctrl->getNextClass($this);
275 $cmd = $this->ctrl->getCmd();
277 $this->ctrl->setReturn($this,
'');
303 $this->ctrl->returnToParent($this);
318 $class = $this->callback[
'class'];
319 $method = $this->callback[
'method'];
323 $class->$method(
$_POST[
'user']);
333 $class = $this->callback[
'class'];
334 $method = $this->callback[
'method'];
336 $users = explode(
',',
$_POST[
'user_login']);
338 foreach($users as $user)
343 $user_ids[] = $user_id;
347 $user_type = isset(
$_POST[
'user_type']) ?
$_POST[
'user_type'] : 0;
349 if(!$class->$method($user_ids,$user_type))
351 $GLOBALS[
'ilCtrl']->returnToParent($this);
360 $class = $this->callback[
'class'];
361 $method = $this->callback[
'method'];
364 if(!$class->$method((array)
$_POST[
'user'],$_POST[
'selectedCommand']))
370 public function setCallback(&$class,$method,$a_add_options = array())
372 $this->callback = array(
'class' => $class,
'method' => $method);
373 $this->add_options = $a_add_options ? $a_add_options : array();
379 $this->tpl->setContent($this->form->getHTML());
386 include_once
'./Services/Form/classes/class.ilPropertyFormGUI.php';
389 $this->form->setFormAction($this->ctrl->getFormAction($this,
'search'));
390 $this->form->setTitle($this->
getTitle());
391 $this->form->addCommandButton(
'performSearch', $this->lng->txt(
'search'));
392 $this->form->addCommandButton(
'cancel', $this->lng->txt(
'cancel'));
396 $kind->
setValue($this->search_type);
397 $this->form->addItem($kind);
400 $users =
new ilRadioOption($this->lng->txt(
'search_for_users'),
'usr');
403 include_once
'Services/Search/classes/class.ilUserSearchOptions.php';
406 switch($info[
'type'])
411 $sel =
new ilSelectInputGUI($info[
'lang'],
"rep_query[usr][".$info[
'db'].
"]");
412 $sel->setOptions($info[
'values']);
413 $users->addSubItem($sel);
419 if(isset($info[
'autoComplete']) and $info[
'autoComplete'])
421 $ilCtrl->setParameterByClass(get_class($this),
'autoCompleteField',$info[
'db']);
422 $ul =
new ilTextInputGUI($info[
'lang'],
"rep_query[usr][".$info[
'db'].
"]");
423 $ul->setDataSource($ilCtrl->getLinkTarget($this,
424 "doUserAutoComplete",
"",
true));
426 $ul->setMaxLength(120);
427 $users->addSubItem($ul);
431 $txt =
new ilTextInputGUI($info[
'lang'],
"rep_query[usr][".$info[
'db'].
"]");
433 $txt->setMaxLength(120);
434 $users->addSubItem($txt);
439 $kind->addOption($users);
444 $roles =
new ilRadioOption($this->lng->txt(
'search_for_role_members'),
'role');
445 $role =
new ilTextInputGUI($this->lng->txt(
'search_role_title'),
'rep_query[role][title]');
447 $role->setMaxLength(120);
449 $kind->addOption($roles);
452 $groups =
new ilRadioOption($this->lng->txt(
'search_for_crs_members'),
'crs');
453 $group =
new ilTextInputGUI($this->lng->txt(
'search_crs_title'),
'rep_query[crs][title]');
455 $group->setMaxLength(120);
457 $kind->addOption($groups);
460 $groups =
new ilRadioOption($this->lng->txt(
'search_for_grp_members'),
'grp');
461 $group =
new ilTextInputGUI($this->lng->txt(
'search_grp_title'),
'rep_query[grp][title]');
463 $group->setMaxLength(120);
465 $kind->addOption($groups);
486 $found_query =
false;
487 foreach((array)
$_POST[
'rep_query'][
$_POST[
'search_for']] as $field => $value)
503 if(
$_POST[
'cmd'][
'performSearch'])
508 switch($this->search_type)
529 $this->result_obj->setRequiredPermission(
'read');
530 $this->result_obj->addObserver($this,
'searchResultFilterListener');
534 if($this->search_type ==
'usr')
536 include_once
'./Services/User/classes/class.ilUserFilter.php';
537 $this->search_results = array_intersect(
538 $this->result_obj->getResultIds(),
544 $this->search_results = array();
545 foreach((array) $this->result_obj->getResults() as
$res)
547 $this->search_results[] =
$res[
'obj_id'];
551 if(!count($this->search_results))
558 if($this->result_obj->isLimitReached())
560 $message = sprintf($this->lng->txt(
'search_limit_reached'),$this->settings->getMaxHits());
571 include_once
'Services/Search/classes/class.ilUserSearchOptions.php';
572 include_once
'Services/Search/classes/class.ilObjectSearchFactory.php';
577 $query_string =
$_SESSION[
'rep_query'][
'usr'][$name];
590 switch($info[
'type'])
598 $udf_search->setFields(array($name));
599 $result_obj = $udf_search->performSearch();
611 $user_search->setFields(array($name));
612 $result_obj = $user_search->performSearch();
627 include_once
'Services/Search/classes/class.ilObjectSearchFactory.php';
629 $query_string =
$_SESSION[
'rep_query'][
'grp'][
'title'];
636 include_once
'Services/Search/classes/Like/class.ilLikeObjectSearch.php';
638 $object_search->setFilter(array(
'grp'));
650 include_once
'Services/Search/classes/class.ilObjectSearchFactory.php';
652 $query_string =
$_SESSION[
'rep_query'][
'crs'][
'title'];
659 include_once
'Services/Search/classes/Like/class.ilLikeObjectSearch.php';
661 $object_search->setFilter(array(
'crs'));
673 include_once
'Services/Search/classes/class.ilObjectSearchFactory.php';
675 $query_string =
$_SESSION[
'rep_query'][
'role'][
'title'];
683 include_once
'Services/Search/classes/Like/class.ilLikeObjectSearch.php';
685 $object_search->setFilter(array(
'role'));
700 $query_parser->setMinWordLength(1);
701 $query_parser->setGlobalMinLength(3);
702 $query_parser->parse();
704 if(!$query_parser->validate())
706 return $query_parser->getMessage();
708 return $query_parser;
714 if(is_array(
$_POST[
'rep_query']))
735 $this->search_type =
$_SESSION[
'rep_search_type'];
736 #echo $this->search_type; 748 foreach($this->search_results as
$result)
752 if(!
$_SESSION[
'rep_search'][$this->search_type])
768 return $_SESSION[
'rep_search'][
'usr'] = $a_usr_ids;
770 $_SESSION[
'rep_search'][
'usr'] = array();
775 return $_SESSION[
'rep_search'][
'usr'] ? array_unique(
$_SESSION[
'rep_search'][
'usr']) : array();
780 if($this->stored ==
false)
782 $this->result_obj->mergeEntries($new_res);
783 $this->stored =
true;
788 $this->result_obj->intersectEntries($new_res);
799 include_once
'./Services/UIComponent/Toolbar/classes/class.ilToolbarGUI.php';
802 $this->lng->txt(
'search_new'),
803 $this->ctrl->getLinkTarget($this,
'showSearch')
805 $this->tpl->setVariable(
'ACTION_BUTTONS',$toolbar->getHTML());
813 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.rep_search_result.html',
'Services/Search');
816 switch($this->search_type)
843 $is_in_admin = (
$_REQUEST[
'baseClass'] ==
'ilAdministrationGUI');
847 $_SESSION[
"usr_search_link"] = $this->ctrl->getLinkTarget($this,
'show');
850 include_once
'./Services/Search/classes/class.ilRepositoryUserResultTableGUI.php';
853 if(count($this->add_options))
855 $table->addMultiItemSelectionButton(
858 'handleMultiCommand',
859 $this->lng->txt(
'execute')
864 $table->addMultiCommand(
'addUser', $this->lng->txt(
'btn_add'));
866 $table->parseUserIds($a_usr_ids);
868 $this->tpl->setVariable(
'RES_TABLE',$table->getHTML());
878 include_once
'./Services/Search/classes/class.ilRepositoryObjectResultTableGUI.php';
881 $table->parseObjectIds($a_obj_ids);
883 $this->tpl->setVariable(
'RES_TABLE',$table->getHTML());
893 include_once
'./Services/Search/classes/class.ilRepositoryObjectResultTableGUI.php';
896 $table->parseObjectIds($a_obj_ids);
898 $this->tpl->setVariable(
'RES_TABLE',$table->getHTML());
908 include_once
'./Services/Search/classes/class.ilRepositoryObjectResultTableGUI.php';
911 $table->parseObjectIds($a_obj_ids);
913 $this->tpl->setVariable(
'RES_TABLE',$table->getHTML());
924 if (
$_GET[
"list_obj"] !=
"" && !is_array(
$_POST[
'obj']))
939 foreach(
$_POST[
'obj'] as $obj_id)
947 include_once
'./Services/Membership/classes/class.ilParticipants.php';
957 include_once
'./Services/User/classes/class.ilUserFilter.php';
962 $members = array_unique((array) $members);
965 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.rep_search_result.html',
'Services/Search');
993 if($a_data[
'type'] ==
'usr')
995 if($a_data[
'obj_id'] == ANONYMOUS_USER_ID)
1010 $this->object_selection = (bool)$a_value;
1020 if (
$_GET[
"list_obj"] !=
"" && !is_array(
$_POST[
'obj']))
1031 $this->ctrl->setParameter($this->callback[
"class"],
"obj", implode(
";",
$_POST[
"obj"]));
1032 $this->ctrl->redirect($this->callback[
"class"], $this->callback[
"method"]);
setCallback(&$class, $method, $a_add_options=array())
setTitle($a_title)
Set form title.
selectObject()
Return selection of course/group/roles to calling script.
This class represents an option in a radio group.
showSearchGroupTable($a_obj_ids)
TableGUI class user search results.
enableSearchableCheck($a_status)
En/disable the validation of the searchable flag.
addUserFromAutoComplete()
Add user from auto complete input.
isSearchableCheckEnabled()
__performGroupSearch()
Search groups.
addNewSearchButton()
Add new search button.
__appendToStoredResults($a_usr_ids)
showSearchRoleTable($a_obj_ids)
Show usr table.
static _lookupId($a_user_str)
lookup id by login
const FIELD_TYPE_UDF_TEXT
static getInstance()
Singelton get instance.
__performRoleSearch()
Search roles.
static hasParticipantListAccess($a_obj_id, $a_usr_id=null)
Check if (current) user has access to the participant list.
searchResultFilterListener($a_ref_id, $a_data)
Listener called from ilSearchResult Id is obj_id for role, usr Id is ref_id for crs grp...
Auto completion class for user lists.
__performCourseSearch()
Search courses.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
static _getUserSearchInstance($query_parser)
get reference of ilLikeUserSearch
showSearchCourseTable($a_obj_ids)
__storeEntries(&$new_res)
doUserAutoComplete()
Do auto completion.
addSubItem($a_item)
Add Subitem.
static _lookupObjId($a_id)
This class represents a text property in a property form.
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
getTitle()
Get search form title.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
const FIELD_TYPE_UDF_SELECT
Class ilUserSearchOptions.
listUsers()
List users of course/group/roles.
static _lookupType($a_id, $a_reference=false)
lookup object type
allowObjectSelection($a_value=false)
Toggle object selection status.
& __parseQueryString($a_string, $a_combination_or=true)
parse query string, using query parser instance
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
storedUserList()
Called from table sort.
TableGUI class object (course,group and role) search results.
static fillAutoCompleteToolbar($parent_object, ilToolbarGUI $toolbar=null, $a_options=array())
fill toolbar with
ilRepositorySearchGUI()
Constructor public.
setString($a_str)
Set/get search string public.
handleMultiCommand()
Handle multi command.
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
showSearchUserTable($a_usr_ids, $a_parent_cmd)
Show usr table.
& executeCommand()
Control public.
static getInstanceByObjId($a_obj_id)
Get instance by obj type.
performSearch()
Perform a search.
static _getUserDefinedFieldSearchInstance($query_parser)
get reference of ilLikeUserDefinedFieldSearch
static _getSearchableFieldsInfo($a_admin=false)