ILIAS
Release_4_0_x_branch Revision 61816
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
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
4
require_once
"classes/class.ilObject.php"
;
5
15
class
ilObjSearchSettings
extends
ilObject
16
{
20
var
$settings_obj
= null;
21
22
29
function
ilObjSearchSettings
($a_id = 0,$a_call_by_reference =
true
)
30
{
31
$this->type =
"seas"
;
32
$this->
ilObject
($a_id,$a_call_by_reference);
33
}
34
35
function
initSettingsObject
()
36
{
37
include_once
'Services/Search/classes/class.ilSearchSettings.php'
;
38
39
$this->settings_obj =
new
ilSearchSettings
();
40
}
41
42
43
50
function
update
()
51
{
52
if
(!parent::update())
53
{
54
return
false
;
55
}
56
57
// put here object specific stuff
58
59
return
true
;
60
}
61
62
63
64
65
}
// END class.ilObjSearchSettings
66
?>
Services
Search
classes
class.ilObjSearchSettings.php
Generated on Wed Apr 27 2016 19:01:49 for ILIAS by
1.8.1.2 (using
Doxyfile
)