ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 return false;
42 }
43
44 // put here object specific stuff
45
46 return true;
47 }
48}
An exception for terminatinating execution or to throw for unit testing.
__construct($a_id=0, $a_call_by_reference=true)
Constructor @access public.
Class ilObject Basic functions for all objects.
update($pash, $contents, Config $config)