ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 
5 include_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.
setId($id)
Set ID.
setBehaviour($a_val)
Set behaviour.
getBehaviour()
Get behaviour.
getHideTitle()
Get hide title.
setHideTitle($a_hide_title)
Set hide title.
static returnDbTableName()
Item group active record class.