ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.arRealRecord.php
Go to the documentation of this file.
1<?php
2require_once('./Services/ActiveRecord/class.ActiveRecord.php');
3
11{
12
17 public static function returnDbTableName()
18 {
19 return 'ar_demo_real_record';
20 }
21
22
33 protected $id = 0;
40 protected $title = '';
47 public $description = '';
54 protected $usr_ids = array();
55
56
61 {
62 $this->description = $description;
63 }
64
65
69 public function getDescription()
70 {
71 return $this->description;
72 }
73
74
78 public function setId($id)
79 {
80 $this->id = $id;
81 }
82
83
87 public function getId()
88 {
89 return $this->id;
90 }
91
92
96 public function setTitle($title)
97 {
98 $this->title = $title;
99 }
100
101
105 public function getTitle()
106 {
107 return $this->title;
108 }
109
110
114 public function setUsrIds($usr_ids)
115 {
116 $this->usr_ids = $usr_ids;
117 }
118
119
123 public function getUsrIds()
124 {
125 return $this->usr_ids;
126 }
127}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.
Class arRealRecord.
setDescription($description)
static returnDbTableName()