24 include_once
'./Services/Search/classes/class.ilSearchBaseGUI.php';
25 include_once
'./Services/Search/classes/Lucene/class.ilLuceneAdvancedSearchFields.php';
26 include_once
'./Services/Administration/interfaces/interface.ilAdministrationCommandHandling.php';
68 $next_class = $this->ctrl->getNextClass($this);
69 $cmd = $this->ctrl->getCmd();
72 switch ($next_class) {
73 case 'ilobjectcopygui':
74 $this->ctrl->setReturn($this);
75 include_once
'./Services/Object/classes/class.ilObjectCopyGUI.php';
77 $this->ctrl->forwardCommand($cp);
83 $cmd =
"showSavedResults";
103 include_once
'./Services/Search/classes/Lucene/class.ilLuceneSearcher.php';
104 include_once
'./Services/Search/classes/Lucene/class.ilLuceneAdvancedQueryParser.php';
111 include_once
'./Services/Search/classes/Lucene/class.ilLuceneSearchResultFilter.php';
113 $filter->loadFromDb();
116 if ($filter->getResultObjIds()) {
117 $searcher->highlight($filter->getResultObjIds());
120 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.lucene_adv_search.html',
'Services/Search');
121 include_once
'./Services/Search/classes/class.ilSearchResultPresentation.php';
123 $presentation->setResults($filter->getResultIds());
124 $presentation->setSearcher($searcher);
128 $this->
addPager($filter,
'max_page');
129 $presentation->setPreviousNext($this->prev_link, $this->next_link);
131 if ($presentation->render()) {
132 $this->tpl->setVariable(
'SEARCH_RESULTS', $presentation->getHTML(
true));
133 } elseif (strlen(trim($qp->getQuery()))) {
139 $this->tpl->setVariable(
'SEARCH_TABLE', $this->form->getHTML());
141 if ($filter->getResultIds()) {
153 $tree = $DIC[
'tree'];
155 include_once
'./Services/Form/classes/class.ilPropertyFormGUI.php';
158 $this->form->setFormAction($this->ctrl->getFormAction($this,
'search'));
159 $this->form->setTitle($this->lng->txt(
'search_advanced'));
160 $this->form->addCommandButton(
'search', $this->lng->txt(
'search'));
161 $this->form->addCommandButton(
'reset', $this->lng->txt(
'reset'));
163 foreach ($this->
fields->getActiveSections() as $definition) {
164 if ($definition[
'name'] !=
'default') {
166 $section->setTitle($definition[
'name']);
170 foreach ($definition[
'fields'] as $field_name) {
171 if (is_object($element = $this->
fields->getFormElement($this->search_cache->getQuery(), $field_name, $this->form))) {
172 $this->form->addItem($element);
184 $this->search_cache->setRoot((
int)
$_POST[
'root_id']);
185 $this->search_cache->setQuery(array(
'lom_content' =>
ilUtil::stripSlashes($_POST[
'queryString'])));
186 $this->search_cache->save();
192 if (!is_array($this->search_cache->getQuery())) {
199 $this->search_cache->deleteCachedEntries();
202 include_once
'./Services/Object/classes/class.ilSubItemListGUI.php';
213 $this->search_cache->setQuery(array());
214 $this->search_cache->save();
230 include_once
'./Services/Search/classes/Lucene/class.ilLuceneSearcher.php';
231 include_once
'./Services/Search/classes/Lucene/class.ilLuceneAdvancedQueryParser.php';
234 if (!strlen(trim($qp->getQuery()))) {
244 $ilBench->start(
'Lucene',
'ResultFilter');
245 include_once
'./Services/Search/classes/Lucene/class.ilLuceneSearchResultFilter.php';
246 include_once
'./Services/Search/classes/Lucene/class.ilLucenePathFilter.php';
249 $filter->setCandidates($searcher->getResult());
251 $ilBench->stop(
'Lucene',
'ResultFilter');
253 if ($filter->getResultObjIds()) {
254 $searcher->highlight($filter->getResultObjIds());
258 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.lucene_adv_search.html',
'Services/Search');
259 include_once
'./Services/Search/classes/class.ilSearchResultPresentation.php';
261 $presentation->setResults($filter->getResultIds());
262 $presentation->setSearcher($searcher);
265 $ilBench->start(
'Lucene',
'1500_fo');
266 $this->
addPager($filter,
'max_page');
267 $ilBench->stop(
'Lucene',
'1500_fo');
268 $presentation->setPreviousNext($this->prev_link, $this->next_link);
270 if ($presentation->render()) {
271 $this->tpl->setVariable(
'SEARCH_RESULTS', $presentation->getHTML(
true));
278 $this->tpl->setVariable(
'SEARCH_TABLE', $this->form->getHTML());
280 if ($filter->getResultIds()) {
290 parent::prepareOutput();
302 $ilHelp = $DIC[
'ilHelp'];
304 $ilHelp->setScreenIdComponent(
"src_luc");
306 $this->tabs_gui->addTarget(
'search', $this->ctrl->getLinkTargetByClass(
'illucenesearchgui'));
309 $this->tabs_gui->addTarget(
'search_user', $this->ctrl->getLinkTargetByClass(
'illuceneusersearchgui'));
314 $this->
fields->getActiveFields()) {
315 $this->tabs_gui->addTarget(
'search_advanced', $this->ctrl->getLinkTarget($this));
318 $this->tabs_gui->setTabActive(
'search_advanced');
333 include_once(
'Services/Search/classes/class.ilUserSearchCache.php');
336 if ((
int)
$_GET[
'page_number']) {
337 $this->search_cache->setResultPageNumber((
int) $_GET[
'page_number']);
339 if (isset(
$_POST[
'query'])) {
340 $this->search_cache->setQuery(
$_POST[
'query']);
349 $adm_view_cmp = $adm_cmds = $creation_selector = $adm_view =
false;
352 if ((count((array) $this->admin_panel_commands) > 0)) {
353 foreach ($this->admin_panel_commands as $cmd) {
354 $this->tpl->setCurrentBlock(
"lucene_admin_panel_cmd");
355 $this->tpl->setVariable(
"LUCENE_PANEL_CMD", $cmd[
"cmd"]);
356 $this->tpl->setVariable(
"LUCENE_TXT_PANEL_CMD", $cmd[
"txt"]);
357 $this->tpl->parseCurrentBlock();
363 $this->tpl->setCurrentBlock(
"lucene_adm_view_components");
365 $this->tpl->setVariable(
"LUCENE_ADM_ALT_ARROW",
$lng->txt(
"actions"));
366 $this->tpl->parseCurrentBlock();
367 $adm_view_cmp =
true;
371 if (is_array($this->admin_view_button)) {
372 if (is_array($this->admin_view_button)) {
373 $this->tpl->setCurrentBlock(
"lucene_admin_button");
374 $this->tpl->setVariable(
375 "LUCENE_ADMIN_MODE_LINK",
376 $this->admin_view_button[
"link"]
378 $this->tpl->setVariable(
379 "LUCENE_TXT_ADMIN_MODE",
380 $this->admin_view_button[
"txt"]
382 $this->tpl->parseCurrentBlock();
384 $this->tpl->setCurrentBlock(
"lucene_admin_view");
385 $this->tpl->parseCurrentBlock();
390 if (is_array($this->creation_selector)) {
391 $this->tpl->setCurrentBlock(
"lucene_add_commands");
393 $this->tpl->setVariable(
"LUCENE_ADD_COM_WIDTH",
'width="1"');
395 $this->tpl->setVariable(
396 "LUCENE_SELECT_OBJTYPE_REPOS",
397 $this->creation_selector[
"options"]
399 $this->tpl->setVariable(
400 "LUCENE_BTN_NAME_REPOS",
401 $this->creation_selector[
"command"]
403 $this->tpl->setVariable(
404 "LUCENE_TXT_ADD_REPOS",
405 $this->creation_selector[
"txt"]
407 $this->tpl->parseCurrentBlock();
408 $creation_selector =
true;
410 if ($adm_view || $creation_selector) {
411 $this->tpl->setCurrentBlock(
"lucene_adm_panel");
413 $this->tpl->setVariable(
"LUCENE_ADM_TBL_WIDTH",
'width:"100%";');
415 $this->tpl->parseCurrentBlock();
424 $this->admin_panel_commands[] =
425 array(
"cmd" => $a_cmd,
"txt" => $a_txt);
433 $this->admin_view_button =
434 array(
"link" => $a_link,
"txt" => $a_txt);
439 $this->page_form_action = $a_action;
GUI class for the workflow of copying objects.
static getInstance(ilLuceneQueryParser $qp)
Get singleton instance.
reset()
Reset search form.
remoteSearch()
Search from main menu.
setPageFormAction($a_action)
executeCommand()
Execute Command.
static resetDetails()
reset details As long as static::resetDetails is not possible this method is final ...
prepareOutput()
Add admin panel command.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
__construct()
Constructor.
static _getInstance($a_usr_id)
Get singleton instance.
static getInstance($a_user_id)
addPager($result, $a_session_key)
Add Pager.
Presentation of search results using object list gui.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
initFormSearch()
Show search form.
handleCommand($a_cmd)
Handle command.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
initUserSearchCache()
Init user search cache.
addAdminPanelCommand($a_cmd, $a_txt)
Add a command to the admin panel.
showSavedResults()
Show saved results.
__construct(Container $dic, ilPlugin $plugin)
setAdminViewButton($a_link, $a_txt)
Show admin view button.
performSearch()
Perform search.
static getInstance()
Get singleton instance.