ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilTermsOfServiceAcceptanceEntity.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
3
9{
13 protected $id;
14
18 protected $user_id;
19
23 protected $text;
24
29
33 protected $timestamp;
34
38 protected $source;
39
43 protected $source_type;
44
48 protected $hash;
49
53 public function setHash($hash)
54 {
55 $this->hash = $hash;
56 }
57
61 public function getHash()
62 {
63 return $this->hash;
64 }
65
69 protected $data_gateway;
70
74 public function setIso2LanguageCode($language)
75 {
76 $this->iso2_language_code = $language;
77 }
78
82 public function getIso2LanguageCode()
83 {
85 }
86
90 public function setText($text)
91 {
92 $this->text = $text;
93 }
94
98 public function getText()
99 {
100 return $this->text;
101 }
102
106 public function setTimestamp($timestamp)
107 {
108 $this->timestamp = $timestamp;
109 }
110
114 public function getTimestamp()
115 {
116 return $this->timestamp;
117 }
118
122 public function setUserId($user_id)
123 {
124 $this->user_id = $user_id;
125 }
126
130 public function getUserId()
131 {
132 return $this->user_id;
133 }
134
138 public function setSource($source)
139 {
140 $this->source = $source;
141 }
142
146 public function getSource()
147 {
148 return $this->source;
149 }
150
155 {
156 $this->source_type = $source_type;
157 }
158
162 public function getSourceType()
163 {
164 return $this->source_type;
165 }
166
170 public function getId()
171 {
172 return $this->id;
173 }
174
178 public function setId($id)
179 {
180 $this->id = $id;
181 }
182}