ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilObjSearchSettings.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
29{
31
32
37 public function __construct($a_id = 0, $a_call_by_reference = true)
38 {
39 $this->type = "seas";
40 parent::__construct($a_id, $a_call_by_reference);
41 }
42
43 public function initSettingsObject(): void
44 {
45 $this->settings_obj = new ilSearchSettings();
46 }
47
48
49
50 public function update(): bool
51 {
52 if (!parent::update()) {
53 return false;
54 }
55 return true;
56 }
57} // END class.ilObjSearchSettings
__construct($a_id=0, $a_call_by_reference=true)
Class ilObject Basic functions for all objects.
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc