ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
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
4require_once "./Services/Object/classes/class.ilObject.php";
5
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?>
An exception for terminatinating execution or to throw for unit testing.
Class ilObjMediaObjectsSettings.
__construct($a_id=0, $a_call_by_reference=true)
Constructor @access public.
Class ilObject Basic functions for all objects.
global $ilDB