19 declare(strict_types=1);
42 $this->
tabs = $DIC->tabs();
43 $this->
help = $DIC->help();
53 $next_class = $this->
ctrl->getNextClass($this);
54 $cmd = $this->
ctrl->getCmd();
57 switch ($next_class) {
58 case "ilpublicuserprofilegui":
61 if ($this->
http->wrapper()->query()->has(
'user_id')) {
68 $profile->setBackUrl($this->
ctrl->getLinkTarget($this,
'showSavedResults'));
69 $ret = $this->
ctrl->forwardCommand($profile);
70 $this->tpl->setContent($ret);
77 $cmd =
"showSavedResults";
86 parent::prepareOutput();
99 return self::SEARCH_DETAILS;
108 return $this->search_cache->getItemFilter();
118 if ($this->
http->wrapper()->post()->has(
'root_id')) {
119 $root_id = $this->
http->wrapper()->post()->retrieve(
125 if ($this->
http->wrapper()->post()->has(
'queryString')) {
126 $queryString = $this->
http->wrapper()->post()->retrieve(
128 $this->
refinery->kindlyTo()->string()
131 $this->search_cache->setRoot($root_id);
132 $this->search_cache->setQuery($queryString);
133 $this->search_cache->save();
143 if (strlen($this->search_cache->getQuery())) {
157 if (!$this->
form->checkInput()) {
158 $this->search_cache->deleteCachedEntries();
165 $this->search_cache->deleteCachedEntries();
191 $user_table->setLuceneResult($searcher->getResult());
192 $user_table->parseUserIds($searcher->getResult()->getCandidates());
194 $this->tpl->setVariable(
'SEARCH_RESULTS', $user_table->getHTML());
202 $this->
help->setScreenIdComponent(
"src_luc");
204 $this->
tabs->addTarget(
'search', $this->
ctrl->getLinkTargetByClass(
'illucenesearchgui'));
207 $this->
tabs->addTarget(
'search_user', $this->
ctrl->getLinkTargetByClass(
'illuceneusersearchgui'));
214 $fields->getActiveFields()) {
215 $this->
tabs->addTarget(
'search_advanced', $this->
ctrl->getLinkTargetByClass(
'illuceneadvancedsearchgui'));
218 $this->
tabs->setTabActive(
'search_user');
230 $this->search_cache->setResultPageNumber($page_number);
233 if ($this->
http->wrapper()->post()->has(
'term')) {
234 $query = $this->
http->wrapper()->post()->retrieve(
236 $this->
refinery->kindlyTo()->string()
238 $this->search_cache->setQuery($query);
239 $this->search_cache->setItemFilter(array());
240 $this->search_cache->setMimeFilter(array());
241 $this->search_cache->save();
253 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.lucene_usr_search.html',
'components/ILIAS/Search');
TableGUI class user search results.
performSearch()
Perform search.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
parse()
parse query string
search()
Search (button pressed)
static _getInstance(int $a_usr_id)
static getInstance(ilLuceneQueryParser $qp)
Get singleton instance.
handleCommand(string $a_cmd)
static resetDetails()
As long as static::resetDetails is not possible this method is final.
executeCommand()
Execute Command.
initUserSearchCache()
Init user search cache.
GUI class for public user profile presentation.
static http()
Fetches the global http state from ILIAS.
GUI for Lucene user search
__construct()
Constructor.
renderSearch(string $term, int $root_node=0)
form( $class_path, string $cmd, string $submit_caption="")
remoteSearch()
Search from main menu.
initStandardSearchForm(int $a_mode)
__construct(Container $dic, ilPlugin $plugin)
initPageNumberFromQuery()
static clear(string $a_var)
getType()
Get type of search (details | fast)
showSavedResults()
Show saved results.
showSearchForm()
Show search form.
getDetails()
Needed for base class search form.