ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMStListUser.php
Go to the documentation of this file.
1 <?php
3 
4 use ilObjUser;
5 
12 {
13 
17  protected $usr_id;
21  protected $gender;
25  protected $time_limit_owner;
29  protected $active;
33  protected $login;
37  protected $title;
41  protected $hobby;
45  protected $institution;
49  protected $department;
53  protected $street;
57  protected $zipcode;
61  protected $city;
65  protected $country;
69  protected $sel_country;
73  protected $matriculation;
77  protected $firstname;
81  protected $lastname;
85  protected $email;
89  protected $phone;
93  protected $mobile_phone;
97  protected $il_user_obj;
98 
99 
103  public function getUsrId()
104  {
105  return $this->usr_id;
106  }
107 
108 
112  public function setUsrId($usr_id)
113  {
114  $this->usr_id = $usr_id;
115  }
116 
117 
121  public function getTimeLimitOwner()
122  {
124  }
125 
126 
131  {
132  $this->time_limit_owner = $time_limit_owner;
133  }
134 
135 
139  public function getActive()
140  {
141  return $this->active;
142  }
143 
144 
148  public function setActive($active)
149  {
150  $this->active = $active;
151  }
152 
153 
157  public function getLogin()
158  {
159  return $this->login;
160  }
161 
162 
166  public function setLogin($login)
167  {
168  $this->login = $login;
169  }
170 
171 
175  public function getFirstname()
176  {
177  return $this->firstname;
178  }
179 
180 
184  public function setFirstname($firstname)
185  {
186  $this->firstname = $firstname;
187  }
188 
189 
193  public function getLastname()
194  {
195  return $this->lastname;
196  }
197 
198 
202  public function setLastname($lastname)
203  {
204  $this->lastname = $lastname;
205  }
206 
207 
211  public function getEmail()
212  {
213  return $this->email;
214  }
215 
216 
220  public function setEmail($email)
221  {
222  $this->email = $email;
223  }
224 
225 
229  public function getPhone()
230  {
231  return $this->phone;
232  }
233 
234 
238  public function setPhone($phone)
239  {
240  $this->phone = $phone;
241  }
242 
243 
247  public function getMobilePhone()
248  {
249  return $this->mobile_phone;
250  }
251 
252 
256  public function setMobilePhone($mobile_phone)
257  {
258  $this->mobile_phone = $mobile_phone;
259  }
260 
261 
265  public function getGender()
266  {
267  return $this->gender;
268  }
269 
270 
274  public function setGender($gender)
275  {
276  $this->gender = $gender;
277  }
278 
279 
283  public function getTitle()
284  {
285  return $this->title;
286  }
287 
288 
292  public function setTitle($title)
293  {
294  $this->title = $title;
295  }
296 
297 
301  public function getHobby()
302  {
303  return $this->hobby;
304  }
305 
306 
310  public function setHobby($hobby)
311  {
312  $this->hobby = $hobby;
313  }
314 
315 
319  public function getInstitution()
320  {
321  return $this->institution;
322  }
323 
324 
328  public function setInstitution($institution)
329  {
330  $this->institution = $institution;
331  }
332 
333 
337  public function getDepartment()
338  {
339  return $this->department;
340  }
341 
342 
346  public function setDepartment($department)
347  {
348  $this->department = $department;
349  }
350 
351 
355  public function getStreet()
356  {
357  return $this->street;
358  }
359 
360 
364  public function setStreet($street)
365  {
366  $this->street = $street;
367  }
368 
369 
373  public function getZipcode()
374  {
375  return $this->zipcode;
376  }
377 
378 
382  public function setZipcode($zipcode)
383  {
384  $this->zipcode = $zipcode;
385  }
386 
387 
391  public function getCity()
392  {
393  return $this->city;
394  }
395 
396 
400  public function setCity($city)
401  {
402  $this->city = $city;
403  }
404 
405 
409  public function getCountry()
410  {
411  return $this->country;
412  }
413 
414 
418  public function setCountry($country)
419  {
420  $this->country = $country;
421  }
422 
423 
427  public function getSelCountry()
428  {
429  return $this->sel_country;
430  }
431 
432 
436  public function setSelCountry($sel_country)
437  {
438  $this->sel_country = $sel_country;
439  }
440 
441 
445  public function getMatriculation()
446  {
447  return $this->matriculation;
448  }
449 
450 
455  {
456  $this->matriculation = $matriculation;
457  }
458 
459 
463  public function returnIlUserObj()
464  {
465  $il_obj_user = new ilObjUser($this->usr_id);
466 
467  return $il_obj_user;
468  }
469 }
login()
Definition: login.php:2