ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
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
32 protected $id = 0;
39 protected $title = '';
46 public $description = '';
53 protected $usr_ids = array();
54
55
60 {
61 $this->description = $description;
62 }
63
64
68 public function getDescription()
69 {
70 return $this->description;
71 }
72
73
77 public function setId($id)
78 {
79 $this->id = $id;
80 }
81
82
86 public function getId()
87 {
88 return $this->id;
89 }
90
91
95 public function setTitle($title)
96 {
97 $this->title = $title;
98 }
99
100
104 public function getTitle()
105 {
106 return $this->title;
107 }
108
109
113 public function setUsrIds($usr_ids)
114 {
115 $this->usr_ids = $usr_ids;
116 }
117
118
122 public function getUsrIds()
123 {
124 return $this->usr_ids;
125 }
126}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.
Class arRealRecord.
setDescription($description)
static returnDbTableName()