ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSearchBaseGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once 'Services/Search/classes/class.ilSearchSettings.php';
5 include_once './Services/PersonalDesktop/interfaces/interface.ilDesktopItemHandling.php';
6 include_once './Services/Administration/interfaces/interface.ilAdministrationCommandHandling.php';
7 
23 {
24  const SEARCH_FAST = 1;
25  const SEARCH_DETAILS = 2;
26  const SEARCH_AND = 'and';
27  const SEARCH_OR = 'or';
28 
29  const SEARCH_FORM_LUCENE = 1;
31  const SEARCH_FORM_USER = 3;
32 
33  var $settings = null;
34 
35  protected $ctrl = null;
36  var $ilias = null;
37  var $lng = null;
38  var $tpl = null;
39 
44  function ilSearchBaseGUI()
45  {
46  global $ilCtrl,$ilias,$lng,$tpl,$ilMainMenu;
47 
48  $this->ilias =& $ilias;
49  $this->ctrl =& $ilCtrl;
50  $this->tpl =& $tpl;
51  $this->lng =& $lng;
52  $this->lng->loadLanguageModule('search');
53 
54  $ilMainMenu->setActive('search');
55  $this->settings =& new ilSearchSettings();
56  }
57 
58  function prepareOutput()
59  {
60  global $ilLocator, $lng;
61 
62  $this->tpl->getStandardTemplate();
63 
64 // $ilLocator->addItem($this->lng->txt('search'),$this->ctrl->getLinkTarget($this));
65 // $this->tpl->setLocator();
66 
67  //$this->tpl->setTitleIcon(ilUtil::getImagePath("icon_src_b.gif"),
68  // $lng->txt("search"));
69  $this->tpl->setTitleIcon(ilObject::_getIcon("","big", "src"),
70  "");
71  $this->tpl->setTitle($lng->txt("search"));
72 
74 
75  }
76 
80  public function initStandardSearchForm($a_mode)
81  {
82  global $lng, $ilCtrl;
83 
84  include_once("Services/Form/classes/class.ilPropertyFormGUI.php");
85  $this->form = new ilPropertyFormGUI();
86  $this->form->setOpenTag(false);
87  $this->form->setCloseTag(false);
88 
89  // term combination
90  $radg = new ilHiddenInputGUI('search_term_combination');
91  $radg->setValue(ilSearchSettings::getInstance()->getDefaultOperator());
92  $this->form->addItem($radg);
93 
94  if(ilSearchSettings::getInstance()->isLuceneItemFilterEnabled())
95  {
96  if($a_mode == self::SEARCH_FORM_STANDARD)
97  {
98  // search type
99  $radg = new ilRadioGroupInputGUI($lng->txt("search_type"), "type");
100  $radg->setValue(
101  $this->getType() ==
105  );
106  $op1 = new ilRadioOption($lng->txt("search_fast_info"), ilSearchBaseGUI::SEARCH_FAST);
107  $radg->addOption($op1);
108  $op2 = new ilRadioOption($lng->txt("search_details_info"), ilSearchBaseGUI::SEARCH_DETAILS);
109  }
110  else
111  {
112  $op2 = new ilCheckboxInputGUI($this->lng->txt('search_filter_by_type'),'item_filter_enabled');
113  $op2->setValue(1);
114 // $op2->setChecked($this->getType() == ilSearchBaseGUI::SEARCH_DETAILS);
115  }
116 
117 
118  $cbgr = new ilCheckboxGroupInputGUI('','filter_type');
119  $cbgr->setUseValuesAsKeys(true);
120  $details = $this->getDetails();
121  $det = false;
122  foreach(ilSearchSettings::getInstance()->getEnabledLuceneItemFilterDefinitions() as $type => $data)
123  {
124  $cb = new ilCheckboxOption($lng->txt($data['trans']), $type);
125  if ($details[$type])
126  {
127  $det = true;
128  }
129  $cbgr->addOption($cb);
130  }
131  if($a_mode == self::SEARCH_FORM_LUCENE)
132  {
133  if(ilSearchSettings::getInstance()->isLuceneMimeFilterEnabled())
134  {
135  $mimes = $this->getMimeDetails();
136  foreach(ilSearchSettings::getInstance()->getEnabledLuceneMimeFilterDefinitions() as $type => $data)
137  {
138  $op3 = new ilCheckboxOption($this->lng->txt($data['trans']),$type);
139  if($mimes[$type])
140  {
141  $det = true;
142  }
143  $cbgr->addOption($op3);
144  }
145  }
146  }
147 
148  $cbgr->setValue(array_merge((array) $details,(array) $mimes));
149  $op2->addSubItem($cbgr);
150 
151  if($a_mode != self::SEARCH_FORM_STANDARD && $det)
152  {
153  $op2->setChecked(true);
154  }
155 
157  {
158  $radg->addOption($op2);
159  $this->form->addItem($radg);
160  }
161  else
162  {
163  $this->form->addItem($op2);
164  }
165  }
166 
167  $this->form->setFormAction($ilCtrl->getFormAction($this,'performSearch'));
168  }
169 
173  public function getSearchAreaForm()
174  {
175  global $lng, $ilCtrl;
176 
177  include_once("Services/Form/classes/class.ilPropertyFormGUI.php");
178  $form = new ilPropertyFormGUI();
179  $form->setOpenTag(false);
180  $form->setCloseTag(false);
181 
182  // term combination
183  $radg = new ilHiddenInputGUI('search_term_combination');
184  $radg->setValue(ilSearchSettings::getInstance()->getDefaultOperator());
185  $form->addItem($radg);
186 
187  // search area
188  include_once("./Services/Form/classes/class.ilRepositorySelectorInputGUI.php");
189  $ti = new ilRepositorySelectorInputGUI($lng->txt("search_area"), "area");
190  $ti->setSelectText($lng->txt("search_select_search_area"));
191  $form->addItem($ti);
192  $ti->readFromSession();
193 
194  // alex, 15.8.2012: Added the following lines to get the value
195  // from the main menu top right input search form
196  if (isset($_POST["root_id"]))
197  {
198  $ti->setValue($_POST["root_id"]);
199  $ti->writeToSession();
200  }
201  $form->setFormAction($ilCtrl->getFormAction($this,'performSearch'));
202 
203  return $form;
204  }
205 
206 
211  public function handleCommand($a_cmd)
212  {
213  if(method_exists($this, $a_cmd))
214  {
215  $this->$a_cmd();
216  }
217  else
218  {
219  $a_cmd .= 'Object';
220  $this->$a_cmd();
221  }
222  }
223 
227  public function addToDeskObject()
228  {
229  include_once './Services/PersonalDesktop/classes/class.ilDesktopItemGUI.php';
231  $this->showSavedResults();
232  }
233 
237  public function removeFromDeskObject()
238  {
239  include_once './Services/PersonalDesktop/classes/class.ilDesktopItemGUI.php';
241  $this->showSavedResults();
242  }
243 
247  public function delete()
248  {
249  include_once './Services/Administration/classes/class.ilAdministrationCommandGUI.php';
250  $admin = new ilAdministrationCommandGUI($this);
251  $admin->delete();
252  }
253 
257  public function cancelDelete()
258  {
259  $this->showSavedResults();
260  }
261 
262  public function cancelMoveLinkObject()
263  {
264  $this->showSavedResults();
265  }
266 
270  public function performDelete()
271  {
272  include_once './Services/Administration/classes/class.ilAdministrationCommandGUI.php';
273  $admin = new ilAdministrationCommandGUI($this);
274  $admin->performDelete();
275  }
276 
280  public function cut()
281  {
282 
283 
284  include_once './Services/Administration/classes/class.ilAdministrationCommandGUI.php';
285  $admin = new ilAdministrationCommandGUI($this);
286  $admin->cut();
287  }
288 
292  public function link()
293  {
294  include_once './Services/Administration/classes/class.ilAdministrationCommandGUI.php';
295  $admin = new ilAdministrationCommandGUI($this);
296  $admin->link();
297  }
298 
299  public function paste()
300  {
301  include_once './Services/Administration/classes/class.ilAdministrationCommandGUI.php';
302  $admin = new ilAdministrationCommandGUI($this);
303  $admin->paste();
304  }
305 
307  {
308  include_once './Services/Administration/classes/class.ilAdministrationCommandGUI.php';
309  $admin = new ilAdministrationCommandGUI($this);
310  $admin->showLinkIntoMultipleObjectsTree();
311  }
312 
313  public function showMoveIntoObjectTree()
314  {
315  include_once './Services/Administration/classes/class.ilAdministrationCommandGUI.php';
316  $admin = new ilAdministrationCommandGUI($this);
317  $admin->showMoveIntoObjectTree();
318  }
319 
321  {
322  include_once './Services/Administration/classes/class.ilAdministrationCommandGUI.php';
323  $admin = new ilAdministrationCommandGUI($this);
324  $admin->performPasteIntoMultipleObjects();
325  }
326 
327  public function clear()
328  {
329  unset($_SESSION['clipboard']);
330  $this->ctrl->redirect($this);
331  }
332 
333  public function enableAdministrationPanel()
334  {
335  $_SESSION["il_cont_admin_panel"] = true;
336  $this->ctrl->redirect($this);
337  }
338 
339  public function disableAdministrationPanel()
340  {
341  $_SESSION["il_cont_admin_panel"] = false;
342  $this->ctrl->redirect($this);
343  }
344 
345 
349  public function addLocator()
350  {
351  $ilLocator->addItem($this->lng->txt('search'),$this->ctrl->getLinkTarget($this));
352  $this->tpl->setLocator();
353  }
354 
362  protected function addPager($result,$a_session_key)
363  {
364  global $tpl;
365 
366  $_SESSION["$a_session_key"] = max($_SESSION["$a_session_key"],$this->search_cache->getResultPageNumber());
367 
368  if($_SESSION["$a_session_key"] == 1 and
369  (count($result->getResults()) < $result->getMaxHits()))
370  {
371  return true;
372  }
373 
374  if($this->search_cache->getResultPageNumber() > 1)
375  {
376  $this->ctrl->setParameter($this,'page_number',$this->search_cache->getResultPageNumber() - 1);
377 /* $this->tpl->setCurrentBlock('prev');
378  $this->tpl->setVariable('PREV_LINK',$this->ctrl->getLinkTarget($this,'performSearch'));
379  $this->tpl->setVariable('TXT_PREV',$this->lng->txt('search_page_prev'));
380  $this->tpl->parseCurrentBlock();
381 */
382  $this->prev_link = $this->ctrl->getLinkTarget($this,'performSearch');
383  }
384  for($i = 1;$i <= $_SESSION["$a_session_key"];$i++)
385  {
386  if($i == $this->search_cache->getResultPageNumber())
387  {
388 /* $this->tpl->setCurrentBlock('pages_link');
389  $this->tpl->setVariable('NUMBER',$i);
390  $this->tpl->parseCurrentBlock();
391 */
392  continue;
393  }
394 
395  $this->ctrl->setParameter($this,'page_number',$i);
396  $link = '<a href="'.$this->ctrl->getLinkTarget($this,'performSearch').'" /a>'.$i.'</a> ';
397 /* $this->tpl->setCurrentBlock('pages_link');
398  $this->tpl->setVariable('NUMBER',$link);
399  $this->tpl->parseCurrentBlock();
400 */
401  }
402 
403 
404  if(count($result->getResults()) >= $result->getMaxHits())
405  {
406  $this->ctrl->setParameter($this,'page_number',$this->search_cache->getResultPageNumber() + 1);
407 /* $this->tpl->setCurrentBlock('next');
408  $this->tpl->setVariable('NEXT_LINK',$this->ctrl->getLinkTarget($this,'performSearch'));
409  $this->tpl->setVariable('TXT_NEXT',$this->lng->txt('search_page_next'));
410  $this->tpl->parseCurrentBlock();
411 */
412 $this->next_link = $this->ctrl->getLinkTarget($this,'performSearch');
413  }
414 
415 /* $this->tpl->setCurrentBlock('prev_next');
416  $this->tpl->setVariable('SEARCH_PAGE',$this->lng->txt('search_page'));
417  $this->tpl->parseCurrentBlock();
418 */
419 
420  $this->ctrl->clearParameters($this);
421  }
422 
427  protected function buildSearchAreaPath($a_root_node)
428  {
429  global $tree;
430 
431  $path_arr = $tree->getPathFull($a_root_node,ROOT_FOLDER_ID);
432  $counter = 0;
433  foreach($path_arr as $data)
434  {
435  if($counter++)
436  {
437  $path .= " > ";
438  $path .= $data['title'];
439  }
440  else
441  {
442  $path .= $this->lng->txt('repository');
443  }
444 
445  }
446  return $path;
447  }
448 
452  function autoComplete()
453  {
454  $q = $_REQUEST["term"];
455  include_once("./Services/Search/classes/class.ilSearchAutoComplete.php");
456  $list = ilSearchAutoComplete::getList($q);
457  echo $list;
458  exit;
459  }
460 
461 }
462 ?>
< a tabindex="-1" style="border-style: none;" href="#" title="Refresh Image" onclick="document.getElementById('siimage').src = './securimage_show.php?sid=' + Math.random(); this.blur(); return false">< img src="./images/refresh.png" alt="Reload Image" height="32" width="32" onclick="this.blur()" align="bottom" border="0"/></a >< br/>< strong > Enter Code *if($_SERVER['REQUEST_METHOD']=='POST' &&@ $_POST['do']=='contact') $_SESSION['ctform']['success']
This class represents an option in a radio group.
link()
Interface ilAdministrationCommandHandler.
static _getIcon($a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
cancelMoveLinkObject()
Cancel move/link.
exit
Definition: login.php:54
removeFromDeskObject()
Remove from dektop.
$_POST['username']
Definition: cron.php:12
getSearchAreaForm()
Init standard search form.
This class represents an option in a checkbox group.
$result
showLinkIntoMultipleObjectsTree()
Target selection link.
This class represents a property form user interface.
Handles Administration commands (cut, delete paste)
performDelete()
Delete objects.
addToDeskObject()
Interface methods.
static getList($a_str)
Get completion list.
This class represents a checkbox property in a property form.
static addToDesktop()
Add desktop item public.
buildSearchAreaPath($a_root_node)
Build path for search area.
global $ilCtrl
Definition: ilias.php:18
disableAdministrationPanel()
Disable administration panel.
This class represents a hidden form property in a property form.
This class represents a property in a property form.
setValue($a_value)
Set Value.
addPager($result, $a_session_key)
Add Pager.
cut()
Interface ilAdministrationCommandHandler.
autoComplete()
Data resource for autoComplete.
initStandardSearchForm($a_mode)
Init standard search form.
This class represents a repository selector in a property form.
setValue($a_value)
Set Value.
static infoPanel($a_keep=true)
cancelDelete()
Cancel delete.
redirection script todo: (a better solution should control the processing via a xml file) ...
performPasteIntoMultipleObjects()
Perform paste into multiple objects.
handleCommand($a_cmd)
Handle command.
This class represents a property in a property form.
showMoveIntoObjectTree()
Target selection cut.
static removeFromDesktop()
Remove item from personal desktop public.
ilSearchBaseGUI()
Constructor public.
Interface for gui classes (e.g ilLuceneSearchGUI) that offer add/remove to/from desktop.
clear()
clear clipboard
$path
Definition: index.php:22
addLocator()
Add Locator.
enableAdministrationPanel()
Enable administration panel.
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
Definition: index.php:7
Interface for GUI classes (PDGUI, LuceneSearchGUI...) that have to handle administration commands (cu...