ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilLuceneAdvancedSearchActivationTableGUI.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 include_once './Services/Table/classes/class.ilTable2GUI.php';
25 include_once './Services/Search/classes/Lucene/class.ilLuceneAdvancedSearchFields.php';
26 
37 {
45  public function __construct($a_parent_obj,$a_parent_cmd = '')
46  {
47  global $lng,$ilCtrl;
48 
49  $this->lng = $lng;
50  $this->ctrl = $ilCtrl;
51 
52  parent::__construct($a_parent_obj,$a_parent_cmd);
53  $this->addColumn('','id','0px');
54  $this->addColumn($this->lng->txt('title'),'title','60%');
55  $this->addColumn($this->lng->txt('type'),'type','40%');
56  $this->setRowTemplate('tpl.lucene_activation_row.html','Services/Search');
57  $this->disable('sort');
58  $this->setLimit(100);
59  $this->setSelectAllCheckbox('fid');
60  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
61  $this->addMultiCommand('saveAdvancedLuceneSettings',$this->lng->txt('lucene_activate_field'));
62  }
63 
67  public function fillRow($a_set)
68  {
69  $this->tpl->setVariable('VAL_ID',$a_set['id']);
70  $this->tpl->setVariable('VAL_CHECKED',$a_set['active'] ? 'checked="checked"' : '');
71  $this->tpl->setVariable('VAL_TITLE',$a_set['title']);
72  $this->tpl->setVariable('VAL_TYPE',$a_set['type']);
73 
74  }
75 
76  public function parse(ilLuceneAdvancedSearchSettings $settings)
77  {
78  foreach(ilLuceneAdvancedSearchFields::getFields() as $field => $translation)
79  {
80  $tmp_arr['id'] = $field;
81  $tmp_arr['active'] = $settings->isActive($field);
82  $tmp_arr['title'] = $translation;
83 
84  $tmp_arr['type'] = (substr($field,0,3) == 'lom') ?
85  $this->lng->txt('search_lom') :
86  $this->lng->txt('search_adv_md');
87 
88  $content[] = $tmp_arr;
89  }
90  $this->setData($content ? $content : array());
91  }
92 
93 }
94 ?>