ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilSearchResultTableGUI.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/Table/classes/class.ilTable2GUI.php");
5 
15 {
16 
20  function __construct($a_parent_obj, $a_parent_cmd, $a_presenter)
21  {
22  global $ilCtrl, $lng, $ilAccess, $lng;
23 
24  $this->presenter = $a_presenter;
25  parent::__construct($a_parent_obj, $a_parent_cmd);
26  $this->setTitle($lng->txt("search_results"));
27  $this->setLimit(999);
28 // $this->setId("srcres");
29 
30  //$this->addColumn("", "", "1", true);
31  #$this->addColumn($this->lng->txt("type"), "type", "1");
32  #$this->addColumn($this->lng->txt("search_title_description"), "title_sort");
33  $this->addColumn($this->lng->txt("type"), "", "1");
34  $this->addColumn($this->lng->txt("search_title_description"), "");
35  if($this->enabledRelevance())
36  {
37  #$this->addColumn($this->lng->txt('lucene_relevance_short'),'s_relevance','50px');
38  $this->addColumn($this->lng->txt('lucene_relevance_short'),'','50px');
39  $this->setDefaultOrderField("s_relevance");
40  $this->setDefaultOrderDirection("desc");
41  }
42  $this->addColumn($this->lng->txt("actions"), "", "10px");
43 
44  $this->setEnableHeader(true);
45  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
46  $this->setRowTemplate("tpl.search_result_row.html", "Services/Search");
47  //$this->disable("footer");
48  $this->setEnableTitle(true);
49  $this->setEnableNumInfo(false);
50 
51  include_once "Services/Object/classes/class.ilObjectActivation.php";
52  }
53 
57  protected function fillRow($a_set)
58  {
59  global $lng, $objDefinition;
60 
61  $obj_id = $a_set["obj_id"];
62  $ref_id = $a_set["ref_id"];
63  $type = $a_set['type'];
64  $title = $a_set['title'];
65  $description = $a_set['description'];
66  $relevance = $a_set['relevance'];
67 
68  if(!$type)
69  {
70  return false;
71  }
72 
73  include_once './Services/Search/classes/Lucene/class.ilLuceneSearchObjectListGUIFactory.php';
74  $item_list_gui = ilLuceneSearchObjectListGUIFactory::factory($type);
75  $item_list_gui->initItem($ref_id,$obj_id,$title,$description);
76  $item_list_gui->setContainerObject($this->parent_obj);
77  $item_list_gui->setSearchFragment($this->presenter->lookupContent($obj_id,0));
78  $item_list_gui->setSeparateCommands(true);
79 
81 
82  $this->presenter->appendAdditionalInformation($item_list_gui,$ref_id,$obj_id,$type);
83 
84  $this->tpl->setVariable("ACTION_HTML", $item_list_gui->getCommandsHTML());
85 
86  if($html = $item_list_gui->getListItemHTML($ref_id,$obj_id,$title,$description))
87  {
88  $item_html[$ref_id]['html'] = $html;
89  $item_html[$ref_id]['type'] = $type;
90  }
91 
92  $this->tpl->setVariable("HREF_IMG", $item_list_gui->default_command["link"]);
93 
94  global $lng;
95 
96  if($this->enabledRelevance())
97  {
98  $width1 = (int) ((int) $relevance / 2);
99  $width2 = (int) ((50 - $width1));
100 
101  $this->tpl->setCurrentBlock('relev');
102  $this->tpl->setVariable('VAL_REL',sprintf("%d %%",$relevance));
103  $this->tpl->setVariable('WIDTH_A',$width1);
104  $this->tpl->setVariable('WIDTH_B',$width2);
105  $this->tpl->setVariable('IMG_A',ilUtil::getImagePath("relevance_blue.png"));
106  $this->tpl->setVariable('IMG_B',ilUtil::getImagePath("relevance_dark.png"));
107  $this->tpl->parseCurrentBlock();
108  }
109 
110  $this->tpl->setVariable("ITEM_HTML", $html);
111 
112  if(!$objDefinition->isPlugin($type))
113  {
114  $type_txt = $lng->txt('icon').' '.$lng->txt('obj_'.$type);
115  $icon = ilUtil::getImagePath('icon_'.$type.'.png');
116  }
117  else
118  {
119  include_once("./Services/Component/classes/class.ilPlugin.php");
120  $type_txt = ilPlugin::lookupTxt("rep_robj", $type, "obj_".$type);
121  $icon = ilObject::_getIcon($obj_id,'small',$type);
122  }
123 
124  $this->tpl->setVariable(
125  "TYPE_IMG",
126  ilUtil::img(
127  $icon,
128  $type_txt
129  )
130  );
131  }
132 
137  protected function enabledRelevance()
138  {
139  return ilSearchSettings::getInstance()->enabledLucene() and ilSearchSettings::getInstance()->isRelevanceVisible();
140  }
141 
142 }
143 ?>