ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
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 
15 {
17 
18 
23  public function __construct($a_id = 0, $a_call_by_reference = true)
24  {
25  $this->type = "seas";
26  parent::__construct($a_id, $a_call_by_reference);
27  }
28 
29  public function initSettingsObject(): void
30  {
31  $this->settings_obj = new ilSearchSettings();
32  }
33 
34 
35 
36  public function update(): bool
37  {
38  if (!parent::update()) {
39  return false;
40  }
41  return true;
42  }
43 } // END class.ilObjSearchSettings
__construct($a_id=0, $a_call_by_reference=true)
__construct(Container $dic, ilPlugin $plugin)