ILIAS  release_8 Revision v8.24
class.ilObjSearchSettings.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
5
6require_once "./Services/Object/classes/class.ilObject.php";
7
17{
19
20
25 public function __construct($a_id = 0, $a_call_by_reference = true)
26 {
27 $this->type = "seas";
28 parent::__construct($a_id, $a_call_by_reference);
29 }
30
31 public function initSettingsObject(): void
32 {
33 $this->settings_obj = new ilSearchSettings();
34 }
35
36
37
38 public function update(): bool
39 {
40 if (!parent::update()) {
41 return false;
42 }
43 return true;
44 }
45} // END class.ilObjSearchSettings
__construct($a_id=0, $a_call_by_reference=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc