ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilMStListUser.php
Go to the documentation of this file.
1<?php
3
4use ilObjUser;
5
12{
13
17 protected $usr_id;
21 protected $gender;
25 protected $active;
29 protected $login;
33 protected $title;
37 protected $hobby;
41 protected $institution;
45 protected $department;
49 protected $street;
53 protected $zipcode;
57 protected $city;
61 protected $country;
65 protected $sel_country;
69 protected $matriculation;
73 protected $firstname;
77 protected $lastname;
81 protected $email;
85 protected $second_email;
89 protected $il_user_obj;
90
91
95 public function getUsrId()
96 {
97 return $this->usr_id;
98 }
99
100
104 public function setUsrId($usr_id)
105 {
106 $this->usr_id = $usr_id;
107 }
108
109
113 public function getActive()
114 {
115 return $this->active;
116 }
117
118
122 public function setActive($active)
123 {
124 $this->active = $active;
125 }
126
127
131 public function getLogin()
132 {
133 return $this->login;
134 }
135
136
140 public function setLogin($login)
141 {
142 $this->login = $login;
143 }
144
145
149 public function getFirstname()
150 {
151 return $this->firstname;
152 }
153
154
158 public function setFirstname($firstname)
159 {
160 $this->firstname = $firstname;
161 }
162
163
167 public function getLastname()
168 {
169 return $this->lastname;
170 }
171
172
176 public function setLastname($lastname)
177 {
178 $this->lastname = $lastname;
179 }
180
181
185 public function getEmail()
186 {
187 return $this->email;
188 }
189
190
194 public function setEmail($email)
195 {
196 $this->email = $email;
197 }
198
199
203 public function getSecondEmail()
204 {
205 return $this->second_email;
206 }
207
208
213 {
214 $this->second_email = $second_email;
215 }
216
217
221 public function getGender()
222 {
223 return $this->gender;
224 }
225
226
230 public function setGender($gender)
231 {
232 $this->gender = $gender;
233 }
234
235
239 public function getTitle()
240 {
241 return $this->title;
242 }
243
244
248 public function setTitle($title)
249 {
250 $this->title = $title;
251 }
252
253
257 public function getHobby()
258 {
259 return $this->hobby;
260 }
261
262
266 public function setHobby($hobby)
267 {
268 $this->hobby = $hobby;
269 }
270
271
275 public function getInstitution()
276 {
277 return $this->institution;
278 }
279
280
285 {
286 $this->institution = $institution;
287 }
288
289
293 public function getDepartment()
294 {
295 return $this->department;
296 }
297
298
302 public function setDepartment($department)
303 {
304 $this->department = $department;
305 }
306
307
311 public function getStreet()
312 {
313 return $this->street;
314 }
315
316
320 public function setStreet($street)
321 {
322 $this->street = $street;
323 }
324
325
329 public function getZipcode()
330 {
331 return $this->zipcode;
332 }
333
334
338 public function setZipcode($zipcode)
339 {
340 $this->zipcode = $zipcode;
341 }
342
343
347 public function getCity()
348 {
349 return $this->city;
350 }
351
352
356 public function setCity($city)
357 {
358 $this->city = $city;
359 }
360
361
365 public function getCountry()
366 {
367 return $this->country;
368 }
369
370
374 public function setCountry($country)
375 {
376 $this->country = $country;
377 }
378
379
383 public function getSelCountry()
384 {
385 return $this->sel_country;
386 }
387
388
393 {
394 $this->sel_country = $sel_country;
395 }
396
397
401 public function getMatriculation()
402 {
404 }
405
406
411 {
412 $this->matriculation = $matriculation;
413 }
414
415
419 public function returnIlUserObj()
420 {
421 $il_obj_user = new ilObjUser($this->usr_id);
422
423 return $il_obj_user;
424 }
425}
An exception for terminatinating execution or to throw for unit testing.
login()
Definition: login.php:2