ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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
14require_once "./Services/Object/classes/class.ilObject.php";
15
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?>
__construct($a_id=0, $a_call_by_reference=true)
Constructor @access public.
Class ilObject Basic functions for all objects.