ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilItemGroupAR.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5include_once("./Services/ActiveRecord/class.ActiveRecord.php");
6
15{
19 public static function returnDbTableName()
20 {
21 return 'itgr_data';
22 }
23
35 protected $id;
36
45 protected $hide_title = '';
46
55 protected $behaviour = 0;
56
62 public function getId()
63 {
64 return $this->id;
65 }
66
67
73 public function setId($id)
74 {
75 $this->id = $id;
76 }
77
83 public function setHideTitle($a_hide_title)
84 {
85 $this->hide_title = $a_hide_title;
86 }
87
88
94 public function getHideTitle()
95 {
96 return $this->hide_title;
97 }
98
104 public function setBehaviour($a_val)
105 {
106 $this->behaviour = $a_val;
107 }
108
109
115 public function getBehaviour()
116 {
117 return $this->behaviour;
118 }
119}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.
Item group active record class.
getBehaviour()
Get behaviour.
setBehaviour($a_val)
Set behaviour.
static returnDbTableName()
setHideTitle($a_hide_title)
Set hide title.
getHideTitle()
Get hide title.