ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
◀ ilDoc Overview
class.ilObjMediaObjectsSettings.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
"./Services/Object/classes/class.ilObject.php"
;
5
14
class
ilObjMediaObjectsSettings
extends
ilObject
15
{
16
23
function
__construct
($a_id = 0,$a_call_by_reference =
true
)
24
{
25
$this->type =
"mobs"
;
26
parent::__construct($a_id,$a_call_by_reference);
27
}
28
35
function
update
()
36
{
37
global
$ilDB
;
38
39
if
(!parent::update())
40
{
41
return
false
;
42
}
43
44
return
true
;
45
}
46
50
function
read
()
51
{
52
global
$ilDB
;
53
54
parent::read();
55
56
}
57
58
59
60
61
68
function
delete
()
69
{
70
// always call parent delete function first!!
71
if
(!parent::delete())
72
{
73
return
false
;
74
}
75
76
//put here your module specific stuff
77
78
return
true
;
79
}
80
}
81
?>
ilObject
Class ilObject Basic functions for all objects.
Definition:
class.ilObject.php:15
ilObjMediaObjectsSettings\__construct
__construct($a_id=0, $a_call_by_reference=true)
Constructor public.
Definition:
class.ilObjMediaObjectsSettings.php:23
ilObjMediaObjectsSettings
Class ilObjMediaObjectsSettings.
Definition:
class.ilObjMediaObjectsSettings.php:14
ilObjMediaObjectsSettings\update
update()
update object data
Definition:
class.ilObjMediaObjectsSettings.php:35
ilObjMediaObjectsSettings\read
read()
read
Definition:
class.ilObjMediaObjectsSettings.php:50
$ilDB
global $ilDB
Definition:
storeScorm2004.php:16
php
Services
MediaObjects
classes
class.ilObjMediaObjectsSettings.php
Generated on Fri Jan 17 2025 19:01:14 for ILIAS by
1.8.13 (using
Doxyfile
)