19 declare(strict_types=1);
39 public function __construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output =
true)
43 $this->
http = $DIC->http();
45 $this->
ui = $DIC->ui();
46 $this->src_logger = $DIC->logger()->src();
47 $this->
user = $DIC->user();
51 $this->
lng->loadLanguageModule(
'search');
56 $next_class = $this->
ctrl->getNextClass($this);
57 $cmd = $this->
ctrl->getCmd();
60 switch ($next_class) {
61 case 'ilpermissiongui':
62 $this->tabs_gui->activateTab(
'perm_settings');
64 $ret = $this->
ctrl->forwardCommand($perm_gui);
67 case 'ilobjsearchsettingsformgui':
68 $this->tabs_gui->activateTab(
'settings');
79 $ret = $this->
ctrl->forwardCommand($settings_gui);
82 case 'ilobjsearchlucenesettingsformgui':
83 $this->tabs_gui->activateTab(
'lucene_settings_tab');
96 $ret = $this->
ctrl->forwardCommand($luc_settings_gui);
107 case 'luceneSettings':
111 case 'advancedLuceneSettings':
123 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
124 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
127 $this->tabs_gui->setTabActive(
'settings');
129 if (!$this->rbac_system->checkAccess(
'write', $this->object->getRefId())) {
130 $this->
ctrl->redirectByClass(
131 [get_class($this),
'ilobjsearchsettingsformgui'],
136 $this->
ctrl->redirectByClass(
137 [get_class($this),
'ilobjsearchsettingsformgui'],
144 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
145 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
148 $this->tabs_gui->setTabActive(
'lucene_settings_tab');
150 if (!$this->rbac_system->checkAccess(
'write', $this->object->getRefId())) {
151 $this->
ctrl->redirectByClass(
152 [get_class($this),
'ilobjsearchlucenesettingsformgui'],
157 $this->
ctrl->redirectByClass(
158 [get_class($this),
'ilobjsearchlucenesettingsformgui'],
170 if ($this->rbac_system->checkAccess(
"visible,read", $this->object->getRefId())) {
171 $this->tabs_gui->addTab(
173 $this->
lng->txt(
'settings'),
174 $this->
ctrl->getLinkTarget($this,
'settings')
178 if ($this->rbac_system->checkAccess(
'read', $this->object->getRefId())) {
179 $this->tabs_gui->addTab(
180 'lucene_advanced_settings',
181 $this->
lng->txt(
'lucene_advanced_settings'),
182 $this->
ctrl->getLinkTarget($this,
'advancedLuceneSettings')
186 if ($this->rbac_system->checkAccess(
'read', $this->object->getRefId())) {
187 $this->tabs_gui->addTab(
188 'lucene_settings_tab',
189 $this->
lng->txt(
'lucene_settings_tab'),
190 $this->
ctrl->getLinkTarget($this,
'luceneSettings')
194 if ($this->rbac_system->checkAccess(
'edit_permission', $this->object->getRefId())) {
195 $this->tabs_gui->addTab(
197 $this->
lng->txt(
'perm_settings'),
198 $this->
ctrl->getLinkTargetByClass(
199 [get_class($this),
'ilpermissiongui'],
208 $this->tabs_gui->setTabActive(
'lucene_advanced_settings');
211 $table->setTitle($this->
lng->txt(
'lucene_advanced_settings_table'));
214 $this->tpl->setContent($table->getHTML());
219 if (!$this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
220 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
221 $this->
ctrl->redirect($this,
'settings');
224 $enabled_md_ids =
new SplFixedArray(0);
225 if ($this->
http->wrapper()->post()->has(
'fid')) {
226 $enabled_md_ids = $this->
http->wrapper()->post()->retrieve(
234 $settings->setActive($field, in_array($field, (array) $enabled_md_ids));
237 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
238 $this->
ctrl->redirect($this,
'advancedLuceneSettings');
advancedLuceneSettingsObject()
redirectToLuceneSettings()
prepareOutput(bool $show_sub_objects=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Provides fluid interface to RBAC services.
static http()
Fetches the global http state from ILIAS.
Class ilObjectGUI Basic methods of all Output classes.
Activation of meta data fields.
__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output=true)
__construct(Container $dic, ilPlugin $plugin)
static getFields()
Return an array of all meta data fields.
saveAdvancedLuceneSettingsObject()