ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
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 
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 ?>