ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilStudyProgrammeAdvancedMetadataRecord.php
Go to the documentation of this file.
1 <?php
2 require_once("./Services/ActiveRecord/class.ActiveRecord.php");
3 
11 {
12  protected $connector_container_name = 'prg_type_adv_md_rec';
13 
25  protected $id;
26 
35  protected $type_id;
36 
45  protected $rec_id;
46 
52  public static function returnDbTableName()
53  {
54  return 'prg_type_adv_md_rec';
55  }
56 
57 
61  public function getId()
62  {
63  return $this->id;
64  }
65 
66 
70  public function setId($id)
71  {
72  $this->id = $id;
73  }
74 
75 
79  public function getTypeId()
80  {
81  return $this->type_id;
82  }
83 
84 
88  public function setTypeId($type_id)
89  {
90  $this->type_id = $type_id;
91  }
92 
93 
97  public function getRecId()
98  {
99  return $this->rec_id;
100  }
101 
102 
106  public function setRecId($rec_id)
107  {
108  $this->rec_id = $rec_id;
109  }
110 }
Class ActiveRecord.