ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
class.ilMStListUser.php
Go to the documentation of this file.
1
<?
php
2
8
class
ilMStListUser
9
{
10
14
protected
$usr_id
;
18
protected
$gender
;
22
protected
$time_limit_owner
;
26
protected
$active
;
30
protected
$login
;
34
protected
$title
;
38
protected
$hobby
;
42
protected
$institution
;
46
protected
$department
;
50
protected
$street
;
54
protected
$zipcode
;
58
protected
$city
;
62
protected
$country
;
66
protected
$sel_country
;
70
protected
$matriculation
;
74
protected
$firstname
;
78
protected
$lastname
;
82
protected
$email
;
86
protected
$phone
;
90
protected
$mobile_phone
;
94
protected
$il_user_obj
;
95
96
100
public
function
getUsrId
()
101
{
102
return
$this->usr_id
;
103
}
104
105
109
public
function
setUsrId
(
$usr_id
)
110
{
111
$this->usr_id =
$usr_id
;
112
}
113
114
118
public
function
getTimeLimitOwner
()
119
{
120
return
$this->time_limit_owner
;
121
}
122
123
127
public
function
setTimeLimitOwner
(
$time_limit_owner
)
128
{
129
$this->time_limit_owner =
$time_limit_owner
;
130
}
131
132
136
public
function
getActive
()
137
{
138
return
$this->active
;
139
}
140
141
145
public
function
setActive
(
$active
)
146
{
147
$this->active =
$active
;
148
}
149
150
154
public
function
getLogin
()
155
{
156
return
$this->login
;
157
}
158
159
163
public
function
setLogin
(
$login
)
164
{
165
$this->login =
$login
;
166
}
167
168
172
public
function
getFirstname
()
173
{
174
return
$this->firstname
;
175
}
176
177
181
public
function
setFirstname
(
$firstname
)
182
{
183
$this->firstname =
$firstname
;
184
}
185
186
190
public
function
getLastname
()
191
{
192
return
$this->lastname
;
193
}
194
195
199
public
function
setLastname
(
$lastname
)
200
{
201
$this->lastname =
$lastname
;
202
}
203
204
208
public
function
getEmail
()
209
{
210
return
$this->email
;
211
}
212
213
217
public
function
setEmail
(
$email
)
218
{
219
$this->email =
$email
;
220
}
221
222
226
public
function
getPhone
()
227
{
228
return
$this->phone
;
229
}
230
231
235
public
function
setPhone
(
$phone
)
236
{
237
$this->phone =
$phone
;
238
}
239
240
244
public
function
getMobilePhone
()
245
{
246
return
$this->mobile_phone
;
247
}
248
249
253
public
function
setMobilePhone
(
$mobile_phone
)
254
{
255
$this->mobile_phone =
$mobile_phone
;
256
}
257
258
262
public
function
getGender
()
263
{
264
return
$this->gender
;
265
}
266
267
271
public
function
setGender
(
$gender
)
272
{
273
$this->gender =
$gender
;
274
}
275
276
280
public
function
getTitle
()
281
{
282
return
$this->title
;
283
}
284
285
289
public
function
setTitle
(
$title
)
290
{
291
$this->title =
$title
;
292
}
293
294
298
public
function
getHobby
()
299
{
300
return
$this->hobby
;
301
}
302
303
307
public
function
setHobby
(
$hobby
)
308
{
309
$this->hobby =
$hobby
;
310
}
311
312
316
public
function
getInstitution
()
317
{
318
return
$this->institution
;
319
}
320
321
325
public
function
setInstitution
(
$institution
)
326
{
327
$this->institution =
$institution
;
328
}
329
330
334
public
function
getDepartment
()
335
{
336
return
$this->department
;
337
}
338
339
343
public
function
setDepartment
(
$department
)
344
{
345
$this->department =
$department
;
346
}
347
348
352
public
function
getStreet
()
353
{
354
return
$this->street
;
355
}
356
357
361
public
function
setStreet
(
$street
)
362
{
363
$this->street =
$street
;
364
}
365
366
370
public
function
getZipcode
()
371
{
372
return
$this->zipcode
;
373
}
374
375
379
public
function
setZipcode
(
$zipcode
)
380
{
381
$this->zipcode =
$zipcode
;
382
}
383
384
388
public
function
getCity
()
389
{
390
return
$this->city
;
391
}
392
393
397
public
function
setCity
(
$city
)
398
{
399
$this->city =
$city
;
400
}
401
402
406
public
function
getCountry
()
407
{
408
return
$this->country
;
409
}
410
411
415
public
function
setCountry
(
$country
)
416
{
417
$this->country =
$country
;
418
}
419
420
424
public
function
getSelCountry
()
425
{
426
return
$this->sel_country
;
427
}
428
429
433
public
function
setSelCountry
(
$sel_country
)
434
{
435
$this->sel_country =
$sel_country
;
436
}
437
438
442
public
function
getMatriculation
()
443
{
444
return
$this->matriculation
;
445
}
446
447
451
public
function
setMatriculation
(
$matriculation
)
452
{
453
$this->matriculation =
$matriculation
;
454
}
455
456
460
public
function
returnIlUserObj
()
461
{
462
$il_obj_user =
new
ilObjUser
($this->usr_id);
463
464
return
$il_obj_user;
465
}
466
}
ilMStListUser\returnIlUserObj
returnIlUserObj()
Definition:
class.ilMStListUser.php:460
ilMStListUser\setLastname
setLastname($lastname)
Definition:
class.ilMStListUser.php:199
ilMStListUser\getLogin
getLogin()
Definition:
class.ilMStListUser.php:154
ilMStListUser\setHobby
setHobby($hobby)
Definition:
class.ilMStListUser.php:307
ilMStListUser\getCity
getCity()
Definition:
class.ilMStListUser.php:388
ilMStListUser\$sel_country
$sel_country
Definition:
class.ilMStListUser.php:66
ilMStListUser\getStreet
getStreet()
Definition:
class.ilMStListUser.php:352
ilMStListUser\getInstitution
getInstitution()
Definition:
class.ilMStListUser.php:316
ilMStListUser\getFirstname
getFirstname()
Definition:
class.ilMStListUser.php:172
ilMStListUser\$country
$country
Definition:
class.ilMStListUser.php:62
ilMStListUser\$mobile_phone
$mobile_phone
Definition:
class.ilMStListUser.php:90
ilMStListUser\getHobby
getHobby()
Definition:
class.ilMStListUser.php:298
ilMStListUser\$phone
$phone
Definition:
class.ilMStListUser.php:86
ilMStListUser\getPhone
getPhone()
Definition:
class.ilMStListUser.php:226
ilMStListUser\$usr_id
$usr_id
Definition:
class.ilMStListUser.php:14
ilMStListUser\setLogin
setLogin($login)
Definition:
class.ilMStListUser.php:163
ilMStListUser\getSelCountry
getSelCountry()
Definition:
class.ilMStListUser.php:424
ilMStListUser\getGender
getGender()
Definition:
class.ilMStListUser.php:262
ilMStListUser\getEmail
getEmail()
Definition:
class.ilMStListUser.php:208
ilMStListUser\$il_user_obj
$il_user_obj
Definition:
class.ilMStListUser.php:94
ilMStListUser\setDepartment
setDepartment($department)
Definition:
class.ilMStListUser.php:343
ilMStListUser\getActive
getActive()
Definition:
class.ilMStListUser.php:136
ilMStListUser\getMatriculation
getMatriculation()
Definition:
class.ilMStListUser.php:442
ilMStListUser\setUsrId
setUsrId($usr_id)
Definition:
class.ilMStListUser.php:109
ilMStListUser\$time_limit_owner
$time_limit_owner
Definition:
class.ilMStListUser.php:22
ilMStListUser\setSelCountry
setSelCountry($sel_country)
Definition:
class.ilMStListUser.php:433
ilMStListUser\setGender
setGender($gender)
Definition:
class.ilMStListUser.php:271
ilMStListUser\setPhone
setPhone($phone)
Definition:
class.ilMStListUser.php:235
ilMStListUser\getUsrId
getUsrId()
Definition:
class.ilMStListUser.php:100
ilMStListUser\getDepartment
getDepartment()
Definition:
class.ilMStListUser.php:334
ilMStListUser\setEmail
setEmail($email)
Definition:
class.ilMStListUser.php:217
ilMStListUser\setZipcode
setZipcode($zipcode)
Definition:
class.ilMStListUser.php:379
ilMStListUser\$gender
$gender
Definition:
class.ilMStListUser.php:18
ilMStListUser\getMobilePhone
getMobilePhone()
Definition:
class.ilMStListUser.php:244
ilMStListUser\$city
$city
Definition:
class.ilMStListUser.php:58
ilMStListUser\$login
$login
Definition:
class.ilMStListUser.php:30
ilMStListUser\$zipcode
$zipcode
Definition:
class.ilMStListUser.php:54
ilMStListUser\setFirstname
setFirstname($firstname)
Definition:
class.ilMStListUser.php:181
ilMStListUser\$institution
$institution
Definition:
class.ilMStListUser.php:42
ilMStListUser\getZipcode
getZipcode()
Definition:
class.ilMStListUser.php:370
ilMStListUser\setActive
setActive($active)
Definition:
class.ilMStListUser.php:145
ilMStListUser
Class ilMStListUser.
Definition:
class.ilMStListUser.php:8
ilMStListUser\$lastname
$lastname
Definition:
class.ilMStListUser.php:78
ilMStListUser\getTitle
getTitle()
Definition:
class.ilMStListUser.php:280
ilMStListUser\setCity
setCity($city)
Definition:
class.ilMStListUser.php:397
ilMStListUser\$street
$street
Definition:
class.ilMStListUser.php:50
ilMStListUser\setTimeLimitOwner
setTimeLimitOwner($time_limit_owner)
Definition:
class.ilMStListUser.php:127
ilMStListUser\setStreet
setStreet($street)
Definition:
class.ilMStListUser.php:361
php
ilObjUser
Definition:
class.ilObjUser.php:25
ilMStListUser\getTimeLimitOwner
getTimeLimitOwner()
Definition:
class.ilMStListUser.php:118
ilMStListUser\getLastname
getLastname()
Definition:
class.ilMStListUser.php:190
ilMStListUser\$email
$email
Definition:
class.ilMStListUser.php:82
ilMStListUser\$firstname
$firstname
Definition:
class.ilMStListUser.php:74
ilMStListUser\$department
$department
Definition:
class.ilMStListUser.php:46
ilMStListUser\setCountry
setCountry($country)
Definition:
class.ilMStListUser.php:415
ilMStListUser\setMatriculation
setMatriculation($matriculation)
Definition:
class.ilMStListUser.php:451
ilMStListUser\$hobby
$hobby
Definition:
class.ilMStListUser.php:38
ilMStListUser\$title
$title
Definition:
class.ilMStListUser.php:34
ilMStListUser\getCountry
getCountry()
Definition:
class.ilMStListUser.php:406
ilMStListUser\setTitle
setTitle($title)
Definition:
class.ilMStListUser.php:289
ilMStListUser\setMobilePhone
setMobilePhone($mobile_phone)
Definition:
class.ilMStListUser.php:253
ilMStListUser\setInstitution
setInstitution($institution)
Definition:
class.ilMStListUser.php:325
ilMStListUser\$active
$active
Definition:
class.ilMStListUser.php:26
ilMStListUser\$matriculation
$matriculation
Definition:
class.ilMStListUser.php:70
Services
MyStaff
classes
ListUsers
class.ilMStListUser.php
Generated on Thu Jan 16 2025 19:02:26 for ILIAS by
1.8.13 (using
Doxyfile
)