ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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 static function returnDbTableName() {
20 return 'itgr_data';
21 }
22
34 protected $id;
35
44 protected $hide_title = '';
45
51 public function getId() {
52 return $this->id;
53 }
54
55
61 public function setId($id) {
62 $this->id = $id;
63 }
64
70 public function setHideTitle($a_hide_title)
71 {
72 $this->hide_title = $a_hide_title;
73 }
74
75
81 public function getHideTitle()
82 {
83 return $this->hide_title;
84 }
85}
86
87?>
Class ActiveRecord.
Item group active record class.
static returnDbTableName()
setHideTitle($a_hide_title)
Set hide title.
getHideTitle()
Get hide title.