ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
◀ ilDoc Overview
class.ilObjForumAdministration.php
Go to the documentation of this file.
1
<?
php
2
/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3
14
require_once
"./Services/Object/classes/class.ilObject.php"
;
15
16
class
ilObjForumAdministration
extends
ilObject
17
{
24
public
function
__construct
($a_id = 0,$a_call_by_reference =
true
)
25
{
26
$this->type =
"frma"
;
27
parent::__construct($a_id,$a_call_by_reference);
28
29
$this->lng->loadLanguageModule(
'forum'
);
30
}
31
38
public
function
update
()
39
{
40
if
(!parent::update())
41
{
42
return
false
;
43
}
44
45
// put here object specific stuff
46
47
return
true
;
48
}
49
50
}
51
?>
ilObjForumAdministration\__construct
__construct($a_id=0, $a_call_by_reference=true)
Constructor public.
Definition:
class.ilObjForumAdministration.php:24
ilObject
Class ilObject Basic functions for all objects.
Definition:
class.ilObject.php:15
ilObjForumAdministration\update
update()
update object data
Definition:
class.ilObjForumAdministration.php:38
php
ilObjForumAdministration
Definition:
class.ilObjForumAdministration.php:16
Modules
Forum
classes
class.ilObjForumAdministration.php
Generated on Fri Feb 21 2025 19:01:00 for ILIAS by
1.8.13 (using
Doxyfile
)