ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjSearchSettings.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
5 
6 require_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)
__construct(Container $dic, ilPlugin $plugin)