ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
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  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.
setId($id)
Set ID.
getHideTitle()
Get hide title.
setHideTitle($a_hide_title)
Set hide title.
static returnDbTableName()
Item group active record class.