ILIAS  release_4-4 Revision
ilSearchResultPresentation Class Reference

Presentation of search results using object list gui. More...

+ Collaboration diagram for ilSearchResultPresentation:

Public Member Functions

 __construct ($container=null, $a_mode=self::MODE_LUCENE)
 Constructor. More...
 
 getContainer ()
 Get container gui. More...
 
 getMode ()
 
 setResults ($a_result_data)
 Set result array. More...
 
 getResults ()
 get results More...
 
 setSubitemIds ($a_subids)
 Set subitem ids Used for like and fulltext search. More...
 
 getSubitemIds ()
 Get subitem ids. More...
 
 getSubitemIdsByObject ($a_obj_id)
 Get subitem ids for an object. More...
 
 getHTML ($a_new=false)
 Get HTML. More...
 
 setSearcher ($a_searcher)
 set searcher More...
 
 render ()
 Parse results. More...
 
 setPreviousNext ($a_p, $a_n)
 Set previous next. More...
 
 getRelevance ($a_obj_id)
 get relevance More...
 
 lookupTitle ($a_obj_id, $a_sub_id)
 
 lookupDescription ($a_obj_id, $a_sub_id)
 
 lookupContent ($a_obj_id, $a_sub_id)
 get content More...
 
 appendAdditionalInformation ($item_list_gui, $ref_id, $obj_id, $type)
 Append path, relevance information. More...
 

Data Fields

const MODE_LUCENE = 1
 
const MODE_STANDARD = 2
 

Protected Member Functions

 parseResultReferences ()
 Check if more than one reference is visible. More...
 
 hasMoreReferences ($a_ref_id)
 
 getAllReferences ($a_ref_id)
 
 renderItemList ()
 Render item list. More...
 
 appendPath ($a_ref_id)
 Append path. More...
 
 appendMorePathes ($a_ref_id)
 Append more occurences link. More...
 
 appendRelevance ($a_obj_id)
 Append relevance. More...
 
 appendSubItems ($item_list_gui, $ref_id, $obj_id, $a_type)
 Append subitems. More...
 
 initReferences ()
 

Protected Attributes

 $mode
 
 $tpl
 
 $lng
 

Private Attributes

 $results = array()
 
 $subitem_ids = array()
 
 $has_more_ref_ids = array()
 
 $all_references = null
 
 $searcher = null
 
 $container = null
 

Detailed Description

Presentation of search results using object list gui.

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
$Id$

Definition at line 33 of file class.ilSearchResultPresentation.php.

Constructor & Destructor Documentation

◆ __construct()

ilSearchResultPresentation::__construct (   $container = null,
  $a_mode = self::MODE_LUCENE 
)

Constructor.

Parameters
object$containercontainer gui object

Definition at line 55 of file class.ilSearchResultPresentation.php.

References $_GET, $container, $ilCtrl, $lng, $tpl, initReferences(), and ilSubItemListGUI\setShowDetails().

56  {
57  global $tpl,$lng,$ilCtrl;
58 
59  $this->mode = $a_mode;
60  $this->lng = $lng;
61  $this->container = $container;
62  $this->ctrl = $ilCtrl;
63 
64  $this->initReferences();
65 
66  if(isset($_GET['details']))
67  {
68  include_once './Services/Object/classes/class.ilSubItemListGUI.php';
69  ilSubItemListGUI::setShowDetails((int) $_GET['details']);
70  }
71  }
$_GET["client_id"]
global $ilCtrl
Definition: ilias.php:18
static setShowDetails($a_obj_id)
set show details.
+ Here is the call graph for this function:

Member Function Documentation

◆ appendAdditionalInformation()

ilSearchResultPresentation::appendAdditionalInformation (   $item_list_gui,
  $ref_id,
  $obj_id,
  $type 
)

Append path, relevance information.

Definition at line 366 of file class.ilSearchResultPresentation.php.

References $path, $ref_id, $tpl, appendMorePathes(), appendPath(), and appendSubItems().

367  {
368  $sub = $this->appendSubItems($item_list_gui,$ref_id,$obj_id,$type);
369  $path = $this->appendPath($ref_id);
370  $more = $this->appendMorePathes($ref_id);
371  #$rel = $this->appendRelevance($obj_id);
372 
373  if(!strlen($sub) and
374  !strlen($path) and
375  !strlen($more) and
376  !strlen($rel))
377  {
378  return '';
379  }
380  $tpl = new ilTemplate('tpl.lucene_additional_information.html',true,true,'Services/Search');
381  $tpl->setVariable('SUBITEM',$sub);
382  if(strlen($path)) {
383  $tpl->setVariable('PATH',$path);
384  }
385  if(strlen($more)) {
386  $tpl->setVariable('MORE_PATH',$more);
387  }
388  if(strlen($rel)) {
389  $tpl->setVariable('RELEVANCE',$rel);
390  }
391 
392  $item_list_gui->setAdditionalInformation($tpl->get());
393  //$item_list_gui->setAdditionalInformation("Hello");
394  }
appendMorePathes($a_ref_id)
Append more occurences link.
appendSubItems($item_list_gui, $ref_id, $obj_id, $a_type)
Append subitems.
special template class to simplify handling of ITX/PEAR
$ref_id
Definition: sahs_server.php:39
$path
Definition: index.php:22
+ Here is the call graph for this function:

◆ appendMorePathes()

ilSearchResultPresentation::appendMorePathes (   $a_ref_id)
protected

Append more occurences link.

Returns

Definition at line 417 of file class.ilSearchResultPresentation.php.

References $tpl, getContainer(), getMode(), and hasMoreReferences().

Referenced by appendAdditionalInformation().

418  {
419  if($this->getMode() != self::MODE_LUCENE)
420  {
421  return '';
422  }
423 
424 
425  if(!$num_refs = $this->hasMoreReferences($a_ref_id))
426  {
427  return '';
428  }
429  $tpl = new ilTemplate('tpl.lucene_more_references.html',true,true,'Services/Search');
430  $this->ctrl->setParameter($this->getContainer(),'refs',$a_ref_id);
431  $tpl->setVariable('MORE_REFS_LINK',$this->ctrl->getLinkTarget($this->getContainer(),''));
432  $this->ctrl->clearParameters($this->getContainer());
433 
434  $tpl->setVariable('TXT_MORE_REFS',sprintf($this->lng->txt('lucene_all_occurrences'),$num_refs));
435  return $tpl->get();
436  }
special template class to simplify handling of ITX/PEAR
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ appendPath()

ilSearchResultPresentation::appendPath (   $a_ref_id)
protected

Append path.

Returns

Definition at line 401 of file class.ilSearchResultPresentation.php.

References $tpl.

Referenced by appendAdditionalInformation().

402  {
403  include_once './Services/Tree/classes/class.ilPathGUI.php';
404  $path_gui = new ilPathGUI();
405  $path_gui->enableTextOnly(false);
406  $path_gui->setUseImages(false);
407 
408  $tpl = new ilTemplate('tpl.lucene_path.html',true,true,'Services/Search');
409  $tpl->setVariable('PATH_ITEM',$path_gui->getPath(ROOT_FOLDER_ID,$a_ref_id));
410  return $tpl->get();
411  }
Creates a path for a start and endnode.
special template class to simplify handling of ITX/PEAR
+ Here is the caller graph for this function:

◆ appendRelevance()

ilSearchResultPresentation::appendRelevance (   $a_obj_id)
protected

Append relevance.

Returns

Definition at line 442 of file class.ilSearchResultPresentation.php.

References $tpl, ilUtil\getImagePath(), ilSearchSettings\getInstance(), getMode(), and getRelevance().

443  {
444  if($this->getMode() != self::MODE_LUCENE)
445  {
446  return '';
447  }
448 
449  if(!((int) $this->getRelevance($a_obj_id)))
450  {
451  return '';
452  }
453 
454  include_once './Services/Search/classes/class.ilSearchSettings.php';
455  if(!ilSearchSettings::getInstance()->isRelevanceVisible())
456  {
457  return '';
458  }
459 
460  $tpl = new ilTemplate('tpl.lucene_relevance.html',true,true,'Services/Search');
461 
462  $width1 = (int) $this->getRelevance($a_obj_id);
463  $width2 = (int) (100 - $width1);
464 
465  $tpl->setCurrentBlock('relevance');
466  $tpl->setVariable('VAL_REL',sprintf("%d %%",$this->getRelevance($a_obj_id)));
467  $tpl->setVariable('WIDTH_A',$width1);
468  $tpl->setVariable('WIDTH_B',$width2);
469  $tpl->setVariable('IMG_A',ilUtil::getImagePath("relevance_blue.png"));
470  $tpl->setVariable('IMG_B',ilUtil::getImagePath("relevance_dark.png"));
471  $tpl->parseCurrentBlock();
472  $html = $tpl->get();
473  return $html;
474  }
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
special template class to simplify handling of ITX/PEAR
+ Here is the call graph for this function:

◆ appendSubItems()

ilSearchResultPresentation::appendSubItems (   $item_list_gui,
  $ref_id,
  $obj_id,
  $a_type 
)
protected

Append subitems.

Returns

Definition at line 480 of file class.ilSearchResultPresentation.php.

References $ref_id, $subitem_ids, getContainer(), ilLuceneSubItemListGUIFactory\getInstanceByType(), getMode(), and getSubitemIdsByObject().

Referenced by appendAdditionalInformation().

481  {
482  $subitem_ids = array();
483  if($this->getMode() == self::MODE_STANDARD)
484  {
485  $subitem_ids = $this->getSubitemIdsByObject($obj_id);
486  $highlighter = null;
487  }
488  elseif(is_object($this->searcher->getHighlighter()))
489  {
490  $subitem_ids = $this->searcher->getHighlighter()->getSubitemIds($obj_id);
491  $highlighter = $this->searcher->getHighlighter();
492  }
493 
494  if(!count($subitem_ids))
495  {
496  return;
497  }
498 
499  // Build subitem list
500  include_once './Services/Search/classes/Lucene/class.ilLuceneSubItemListGUIFactory.php';
502  $sub_list->setHighlighter($highlighter);
503  $sub_list->init($item_list_gui,$ref_id,$subitem_ids);
504  return $sub_list->getHTML();
505 
506  }
static getInstanceByType($a_type, $a_cmd_class)
get instance by type
$ref_id
Definition: sahs_server.php:39
getSubitemIdsByObject($a_obj_id)
Get subitem ids for an object.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getAllReferences()

ilSearchResultPresentation::getAllReferences (   $a_ref_id)
protected

Definition at line 178 of file class.ilSearchResultPresentation.php.

References $_SESSION.

Referenced by renderItemList().

179  {
180  if(isset($_SESSION['vis_references'][$a_ref_id]))
181  {
182  return $this->all_references[$a_ref_id] ? $this->all_references[$a_ref_id] : array();
183  }
184  else
185  {
186  return array($a_ref_id);
187  }
188  }
< 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']
+ Here is the caller graph for this function:

◆ getContainer()

ilSearchResultPresentation::getContainer ( )

Get container gui.

Definition at line 76 of file class.ilSearchResultPresentation.php.

References $container.

Referenced by appendMorePathes(), and appendSubItems().

+ Here is the caller graph for this function:

◆ getHTML()

ilSearchResultPresentation::getHTML (   $a_new = false)

Get HTML.

Returns
string HTML

Definition at line 194 of file class.ilSearchResultPresentation.php.

195  {
196  return $this->thtml;
197  }

◆ getMode()

ilSearchResultPresentation::getMode ( )

Definition at line 81 of file class.ilSearchResultPresentation.php.

References $mode.

Referenced by appendMorePathes(), appendRelevance(), appendSubItems(), getRelevance(), lookupContent(), lookupDescription(), and lookupTitle().

+ Here is the caller graph for this function:

◆ getRelevance()

ilSearchResultPresentation::getRelevance (   $a_obj_id)

get relevance

Parameters

Definition at line 304 of file class.ilSearchResultPresentation.php.

References getMode().

Referenced by appendRelevance(), and renderItemList().

305  {
306  if($this->getMode() == self::MODE_LUCENE)
307  {
308  return $this->searcher->getResult()->getRelevance($a_obj_id);
309  }
310  return 0;
311  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getResults()

ilSearchResultPresentation::getResults ( )

get results

Returns
array result array

Definition at line 99 of file class.ilSearchResultPresentation.php.

Referenced by parseResultReferences(), and renderItemList().

100  {
101  return $this->results ? $this->results : array();
102  }
+ Here is the caller graph for this function:

◆ getSubitemIds()

ilSearchResultPresentation::getSubitemIds ( )

Get subitem ids.

Returns

Definition at line 119 of file class.ilSearchResultPresentation.php.

120  {
121  return $this->subitem_ids ? $this->subitem_ids : array();
122  }

◆ getSubitemIdsByObject()

ilSearchResultPresentation::getSubitemIdsByObject (   $a_obj_id)

Get subitem ids for an object.

Parameters
int$a_obj_id
Returns

Definition at line 129 of file class.ilSearchResultPresentation.php.

Referenced by appendSubItems().

130  {
131  return (isset($this->subitem_ids[$a_obj_id]) and $this->subitem_ids[$a_obj_id]) ?
132  $this->subitem_ids[$a_obj_id] :
133  array();
134  }
+ Here is the caller graph for this function:

◆ hasMoreReferences()

ilSearchResultPresentation::hasMoreReferences (   $a_ref_id)
protected

Definition at line 166 of file class.ilSearchResultPresentation.php.

References $_SESSION.

Referenced by appendMorePathes().

167  {
168  if(!isset($this->has_more_ref_ids[$a_ref_id]) or
169  !$this->has_more_ref_ids[$a_ref_id] or
170  isset($_SESSION['vis_references'][$a_ref_id]))
171  {
172  return false;
173  }
174 
175  return $this->has_more_ref_ids[$a_ref_id];
176  }
< 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']
+ Here is the caller graph for this function:

◆ initReferences()

ilSearchResultPresentation::initReferences ( )
protected

Definition at line 508 of file class.ilSearchResultPresentation.php.

References $_REQUEST, and $_SESSION.

Referenced by __construct().

509  {
510  if(isset($_REQUEST['refs']))
511  {
512  $_SESSION['vis_references'][(int) $_REQUEST['refs']] = (int) $_REQUEST['refs'];
513  }
514  }
< 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']
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
Definition: index.php:7
+ Here is the caller graph for this function:

◆ lookupContent()

ilSearchResultPresentation::lookupContent (   $a_obj_id,
  $a_sub_id 
)

get content

Parameters

Definition at line 354 of file class.ilSearchResultPresentation.php.

References getMode().

355  {
356  if($this->getMode() != self::MODE_LUCENE or !is_object($this->searcher->getHighlighter()))
357  {
358  return '';
359  }
360  return $this->searcher->getHighlighter()->getContent($a_obj_id,$a_sub_id);
361  }
+ Here is the call graph for this function:

◆ lookupDescription()

ilSearchResultPresentation::lookupDescription (   $a_obj_id,
  $a_sub_id 
)
Parameters

Definition at line 336 of file class.ilSearchResultPresentation.php.

References ilObject\_lookupDescription(), and getMode().

Referenced by renderItemList().

337  {
338  if($this->getMode() != self::MODE_LUCENE or !is_object($this->searcher->getHighlighter()))
339  {
340  return ilObject::_lookupDescription($a_obj_id);
341  }
342  if(strlen($title = $this->searcher->getHighlighter()->getDescription($a_obj_id,$a_sub_id)))
343  {
344  return $title;
345  }
346  return ilObject::_lookupDescription($a_obj_id);
347  }
static _lookupDescription($a_id)
lookup object description
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ lookupTitle()

ilSearchResultPresentation::lookupTitle (   $a_obj_id,
  $a_sub_id 
)
Parameters

Definition at line 318 of file class.ilSearchResultPresentation.php.

References ilObject\_lookupTitle(), and getMode().

Referenced by renderItemList().

319  {
320  if($this->getMode() != self::MODE_LUCENE or !is_object($this->searcher->getHighlighter()))
321  {
322  return ilObject::_lookupTitle($a_obj_id);
323  }
324  if(strlen($title = $this->searcher->getHighlighter()->getTitle($a_obj_id,$a_sub_id)))
325  {
326  return $title;
327  }
328  return ilObject::_lookupTitle($a_obj_id);
329  }
static _lookupTitle($a_id)
lookup object title
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ parseResultReferences()

ilSearchResultPresentation::parseResultReferences ( )
protected

Check if more than one reference is visible.

Definition at line 141 of file class.ilSearchResultPresentation.php.

References $ref_id, ilObject\_getAllReferences(), and getResults().

Referenced by renderItemList().

142  {
143  global $ilAccess;
144 
145  foreach($this->getResults() as $ref_id => $obj_id)
146  {
147  $this->all_references[$ref_id][] = $ref_id;
148  $counter = 0;
149  foreach(ilObject::_getAllReferences($obj_id) as $new_ref)
150  {
151  if($new_ref == $ref_id)
152  {
153  continue;
154  }
155  if(!$ilAccess->checkAccess('read','',$new_ref))
156  {
157  continue;
158  }
159  $this->all_references[$ref_id][] = $new_ref;
160  ++$counter;
161  }
162  $this->has_more_ref_ids[$ref_id] = $counter;
163  }
164  }
static _getAllReferences($a_id)
get all reference ids of object
$ref_id
Definition: sahs_server.php:39
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ render()

ilSearchResultPresentation::render ( )

Parse results.

Parameters
void
Returns
string html

Definition at line 214 of file class.ilSearchResultPresentation.php.

References renderItemList().

215  {
216  return $this->renderItemList();
217  }
+ Here is the call graph for this function:

◆ renderItemList()

ilSearchResultPresentation::renderItemList ( )
protected

Render item list.

Returns
void

Definition at line 233 of file class.ilSearchResultPresentation.php.

References $ilBench, $ref_id, ilObject\_lookupTitle(), ilObject\_lookupType(), ilObjectListGUI\CONTEXT_SEARCH, getAllReferences(), getRelevance(), getResults(), lookupDescription(), lookupTitle(), and parseResultReferences().

Referenced by render().

234  {
235  global $tree,$ilBench;
236 
237  $this->html = '';
238 
239  $ilBench->start('Lucene','2000_pr');
240  $this->parseResultReferences();
241  $ilBench->stop('Lucene','2000_pr');
242 
243  include_once("./Services/Object/classes/class.ilObjectListGUIPreloader.php");
245 
246  $set = array();
247  foreach($this->getResults() as $c_ref_id => $obj_id)
248  {
249  $ilBench->start('Lucene','2100_res');
250  foreach($this->getAllReferences($c_ref_id) as $ref_id)
251  {
252  $ilBench->start('Lucene','2120_tree');
253  if(!$tree->isInTree($ref_id))
254  {
255  continue;
256  }
257  $ilBench->stop('Lucene','2120_tree');
258 
259  $obj_type = ilObject::_lookupType($obj_id);
260 
261  $set[] = array(
262  "ref_id" => $ref_id,
263  "obj_id" => $obj_id,
264  "title" => $this->lookupTitle($obj_id,0),
265  "title_sort" => ilObject::_lookupTitle($obj_id),
266  "description" => $this->lookupDescription($obj_id,0),
267  "type" => $obj_type,
268  "relevance" => $this->getRelevance($obj_id),
269  "s_relevance" => sprintf("%03d",$this->getRelevance($obj_id))
270  );
271 
272  $preloader->addItem($obj_id, $obj_type, $ref_id);
273  }
274  $ilBench->stop('Lucene','2100_res');
275  }
276 
277  if(!count($set))
278  {
279  return false;
280  }
281 
282  $preloader->preload();
283  unset($preloader);
284 
285  $ilBench->start('Lucene','2900_tb');
286  include_once("./Services/Search/classes/class.ilSearchResultTableGUI.php");
287  $result_table = new ilSearchResultTableGUI($this->container, "showSavedResults", $this);
288  $result_table->setCustomPreviousNext($this->prev, $this->next);
289 
290  $result_table->setData($set);
291  $this->thtml = $result_table->getHTML();
292  $ilBench->stop('Lucene','2900_tb');
293 
294  return true;
295  }
parseResultReferences()
Check if more than one reference is visible.
TableGUI class for search results.
static _lookupTitle($a_id)
lookup object title
Preloader for object list GUIs.
static _lookupType($a_id, $a_reference=false)
lookup object type
$ref_id
Definition: sahs_server.php:39
global $ilBench
Definition: ilias.php:18
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setPreviousNext()

ilSearchResultPresentation::setPreviousNext (   $a_p,
  $a_n 
)

Set previous next.

Definition at line 222 of file class.ilSearchResultPresentation.php.

223  {
224  $this->prev = $a_p;
225  $this->next = $a_n;
226  }

◆ setResults()

ilSearchResultPresentation::setResults (   $a_result_data)

Set result array.

Parameters
array$a_result_dataresult array

Definition at line 90 of file class.ilSearchResultPresentation.php.

91  {
92  $this->results = $a_result_data;
93  }

◆ setSearcher()

ilSearchResultPresentation::setSearcher (   $a_searcher)

set searcher

Parameters

Definition at line 204 of file class.ilSearchResultPresentation.php.

205  {
206  $this->searcher = $a_searcher;
207  }

◆ setSubitemIds()

ilSearchResultPresentation::setSubitemIds (   $a_subids)

Set subitem ids Used for like and fulltext search.

Parameters
array$a_subidsarray ($obj_id => array(page1_id,page2_id);
Returns

Definition at line 110 of file class.ilSearchResultPresentation.php.

111  {
112  $this->subitem_ids = $a_subids;
113  }

Field Documentation

◆ $all_references

ilSearchResultPresentation::$all_references = null
private

Definition at line 46 of file class.ilSearchResultPresentation.php.

◆ $container

ilSearchResultPresentation::$container = null
private

Definition at line 49 of file class.ilSearchResultPresentation.php.

Referenced by __construct(), and getContainer().

◆ $has_more_ref_ids

ilSearchResultPresentation::$has_more_ref_ids = array()
private

Definition at line 45 of file class.ilSearchResultPresentation.php.

◆ $lng

ilSearchResultPresentation::$lng
protected

Definition at line 41 of file class.ilSearchResultPresentation.php.

Referenced by __construct().

◆ $mode

ilSearchResultPresentation::$mode
protected

Definition at line 38 of file class.ilSearchResultPresentation.php.

Referenced by getMode().

◆ $results

ilSearchResultPresentation::$results = array()
private

Definition at line 43 of file class.ilSearchResultPresentation.php.

◆ $searcher

ilSearchResultPresentation::$searcher = null
private

Definition at line 47 of file class.ilSearchResultPresentation.php.

◆ $subitem_ids

ilSearchResultPresentation::$subitem_ids = array()
private

Definition at line 44 of file class.ilSearchResultPresentation.php.

Referenced by appendSubItems().

◆ $tpl

ilSearchResultPresentation::$tpl
protected

◆ MODE_LUCENE

const ilSearchResultPresentation::MODE_LUCENE = 1

Definition at line 35 of file class.ilSearchResultPresentation.php.

◆ MODE_STANDARD


The documentation for this class was generated from the following file: