ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilStudyProgrammeAdvancedMetadataRecord.php
Go to the documentation of this file.
1<?php
2require_once("./Services/ActiveRecord/class.ActiveRecord.php");
3
11 protected $connector_container_name = 'prg_type_adv_md_rec';
12
24 protected $id;
25
34 protected $type_id;
35
44 protected $rec_id;
45
51 static function returnDbTableName() {
52 return 'prg_type_adv_md_rec';
53 }
54
55
59 public function getId() {
60 return $this->id;
61 }
62
63
67 public function setId($id) {
68 $this->id = $id;
69 }
70
71
75 public function getTypeId() {
76 return $this->type_id;
77 }
78
79
83 public function setTypeId($type_id) {
84 $this->type_id = $type_id;
85 }
86
87
91 public function getRecId() {
92 return $this->rec_id;
93 }
94
95
99 public function setRecId($rec_id) {
100 $this->rec_id = $rec_id;
101 }
102
103}
Class ActiveRecord.