ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilObjSearchSettings.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4require_once "./Services/Object/classes/class.ilObject.php";
5
16{
20 public $settings_obj = null;
21
22
29 public function __construct($a_id = 0, $a_call_by_reference = true)
30 {
31 $this->type = "seas";
32 parent::__construct($a_id, $a_call_by_reference);
33 }
34
35 public function initSettingsObject()
36 {
37 include_once 'Services/Search/classes/class.ilSearchSettings.php';
38
39 $this->settings_obj = new ilSearchSettings();
40 }
41
42
43
50 public function update()
51 {
52 if (!parent::update()) {
53 return false;
54 }
55
56 // put here object specific stuff
57
58 return true;
59 }
60} // END class.ilObjSearchSettings
An exception for terminatinating execution or to throw for unit testing.
__construct($a_id=0, $a_call_by_reference=true)
Constructor @access public.
Class ilObject Basic functions for all objects.
update($pash, $contents, Config $config)