ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
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
24include_once './Services/Table/classes/class.ilTable2GUI.php';
25include_once './Services/Search/classes/Lucene/class.ilLuceneAdvancedSearchFields.php';
26
37{
45 public function __construct($a_parent_obj, $a_parent_cmd = '')
46 {
47 global $DIC;
48
49 $lng = $DIC['lng'];
50 $ilCtrl = $DIC['ilCtrl'];
51
52 $this->lng = $lng;
53 $this->ctrl = $ilCtrl;
54
55 parent::__construct($a_parent_obj, $a_parent_cmd);
56 $this->addColumn('', 'id', '0px');
57 $this->addColumn($this->lng->txt('title'), 'title', '60%');
58 $this->addColumn($this->lng->txt('type'), 'type', '40%');
59 $this->setRowTemplate('tpl.lucene_activation_row.html', 'Services/Search');
60 $this->disable('sort');
61 $this->setLimit(100);
62 $this->setSelectAllCheckbox('fid');
63 $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
64
65 $access = $GLOBALS['DIC']->access();
66 if ($access->checkAccess('write', '', $this->getParentObject()->object->getRefId())) {
67 $this->addMultiCommand('saveAdvancedLuceneSettings', $this->lng->txt('lucene_activate_field'));
68 }
69 }
70
74 public function fillRow($a_set)
75 {
76 $this->tpl->setVariable('VAL_ID', $a_set['id']);
77 $this->tpl->setVariable('VAL_CHECKED', $a_set['active'] ? 'checked="checked"' : '');
78 $this->tpl->setVariable('VAL_TITLE', $a_set['title']);
79 $this->tpl->setVariable('VAL_TYPE', $a_set['type']);
80 }
81
82 public function parse(ilLuceneAdvancedSearchSettings $settings)
83 {
84 foreach (ilLuceneAdvancedSearchFields::getFields() as $field => $translation) {
85 $tmp_arr['id'] = $field;
86 $tmp_arr['active'] = $settings->isActive($field);
87 $tmp_arr['title'] = $translation;
88
89 $tmp_arr['type'] = (substr($field, 0, 3) == 'lom') ?
90 $this->lng->txt('search_lom') :
91 $this->lng->txt('search_adv_md');
92
93 $content[] = $tmp_arr;
94 }
95 $this->setData($content ? $content : array());
96 }
97}
An exception for terminatinating execution or to throw for unit testing.
static getFields()
Return an array of all meta data fields.
En/disable single lom/advanced meta data fields.
Class ilTable2GUI.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
setData($a_data)
set table data @access public
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setLimit($a_limit=0, $a_default_limit=0)
set max.
addMultiCommand($a_cmd, $a_text)
Add Command button.
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
disable($a_module_name)
diesables particular modules of table
global $ilCtrl
Definition: ilias.php:18
$GLOBALS['JPEG_Segment_Names']
Global Variable: XMP_tag_captions.
global $DIC
Definition: saml.php:7