ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.arRealRecord.php
Go to the documentation of this file.
1<?php
2require_once('./Services/ActiveRecord/class.ActiveRecord.php');
3
11
16 static function returnDbTableName() {
17 return 'ar_demo_real_record';
18 }
19
20
31 protected $id = 0;
38 protected $title = '';
45 public $description = '';
52 protected $usr_ids = array();
53
54
58 public function setDescription($description) {
59 $this->description = $description;
60 }
61
62
66 public function getDescription() {
67 return $this->description;
68 }
69
70
74 public function setId($id) {
75 $this->id = $id;
76 }
77
78
82 public function getId() {
83 return $this->id;
84 }
85
86
90 public function setTitle($title) {
91 $this->title = $title;
92 }
93
94
98 public function getTitle() {
99 return $this->title;
100 }
101
102
106 public function setUsrIds($usr_ids) {
107 $this->usr_ids = $usr_ids;
108 }
109
110
114 public function getUsrIds() {
115 return $this->usr_ids;
116 }
117}
118
119?>
Class ActiveRecord.
Class arRealRecord.
setDescription($description)
static returnDbTableName()