ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
shibConfig Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Inheritance diagram for shibConfig:
+ Collaboration diagram for shibConfig:

Public Member Functions

 getValueByKey (string $key)
 
 setCity (string $city)
 
 getCity ()
 
 setCountry (string $country)
 
 getCountry ()
 
 setDataConv (string $data_conv)
 
 getDataConv ()
 
 setDepartment (string $department)
 
 getDepartment ()
 
 setEmail (string $email)
 
 getEmail ()
 
 setFax (string $fax)
 
 getFax ()
 
 setFirstname (string $firstname)
 
 getFirstname ()
 
 setGender (string $gender)
 
 getGender ()
 
 setHobby (string $hobby)
 
 getHobby ()
 
 setInstitution (string $institution)
 
 getInstitution ()
 
 setLanguage (string $language)
 
 getLanguage ()
 
 setLastname (string $lastname)
 
 getLastname ()
 
 setLogin (string $login)
 
 getLogin ()
 
 setMatriculation (string $matriculation)
 
 getMatriculation ()
 
 setPhoneHome (string $phone_home)
 
 getPhoneHome ()
 
 setPhoneMobile (string $phone_mobile)
 
 getPhoneMobile ()
 
 setPhoneOffice (string $phone_office)
 
 getPhoneOffice ()
 
 setStreet (string $street)
 
 getStreet ()
 
 setTitle (string $title)
 
 getTitle ()
 
 setUpdateCity (bool $update_city)
 
 getUpdateCity ()
 
 setUpdateCountry (bool $update_country)
 
 getUpdateCountry ()
 
 setUpdateDataConv (bool $update_data_conv)
 
 getUpdateDataConv ()
 
 setUpdateDepartment (bool $update_department)
 
 getUpdateDepartment ()
 
 setUpdateEmail (bool $update_email)
 
 getUpdateEmail ()
 
 setUpdateFax (bool $update_fax)
 
 getUpdateFax ()
 
 setUpdateGender (bool $update_gender)
 
 getUpdateGender ()
 
 setUpdateHobby (bool $update_hobby)
 
 getUpdateHobby ()
 
 setUpdateInstitution (bool $update_institution)
 
 getUpdateInstitution ()
 
 setUpdateLanguage (bool $update_language)
 
 getUpdateLanguage ()
 
 setUpdateLogin (bool $update_login)
 
 getUpdateLogin ()
 
 setUpdateMatriculation (bool $update_matriculation)
 
 getUpdateMatriculation ()
 
 setUpdatePhoneHome (bool $update_phone_home)
 
 getUpdatePhoneHome ()
 
 setUpdatePhoneMobile (bool $update_phone_mobile)
 
 getUpdatePhoneMobile ()
 
 setUpdatePhoneOffice (bool $update_phone_office)
 
 getUpdatePhoneOffice ()
 
 setUpdateStreet (bool $update_street)
 
 getUpdateStreet ()
 
 setUpdateTitle (bool $update_title)
 
 getUpdateTitle ()
 
 setUpdateZipcode (bool $update_zipcode)
 
 getUpdateZipcode ()
 
 setZipcode (string $zipcode)
 
 getZipcode ()
 
 setUserDefaultRole (int $user_default_role)
 
 getUserDefaultRole ()
 
 setUpdateFirstname (bool $update_firstname)
 
 getUpdateFirstname ()
 
 setUpdateLastname (bool $update_lastname)
 
 getUpdateLastname ()
 
 isActivateNew ()
 
 setActivateNew (bool $activate_new)
 

Static Public Member Functions

static getInstance ()
 

Protected Member Functions

 __construct ()
 

Protected Attributes

string $firstname = ''
 
bool $update_firstname = false
 
string $lastname = ''
 
bool $update_lastname = false
 
string $gender = ''
 
bool $update_gender = false
 
string $login = ''
 
bool $update_login = false
 
string $title = ''
 
bool $update_title = false
 
string $institution = ''
 
bool $update_institution = false
 
string $department = ''
 
bool $update_department = false
 
string $street = ''
 
bool $update_street = false
 
string $city = ''
 
bool $update_city = false
 
string $zipcode = ''
 
bool $update_zipcode = false
 
string $country = ''
 
bool $update_country = false
 
string $phone_office = ''
 
bool $update_phone_office = false
 
string $phone_home = ''
 
bool $update_phone_home = false
 
string $phone_mobile = ''
 
bool $update_phone_mobile = false
 
string $fax = ''
 
bool $update_fax = false
 
string $matriculation = ''
 
bool $update_matriculation = false
 
string $email = ''
 
bool $update_email = false
 
string $hobby = ''
 
bool $update_hobby = false
 
string $language = ''
 
bool $update_language = false
 
string $data_conv = ''
 
bool $update_data_conv = false
 
string $user_default_role = '4'
 
bool $activate_new = false
 

Static Protected Attributes

static shibConfig $cache = null
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning Class shibConfig

Deprecated:
Author
Fabian Schmid fs@st.nosp@m.uder.nosp@m.-raim.nosp@m.ann..nosp@m.ch

Definition at line 24 of file class.shibConfig.php.

Constructor & Destructor Documentation

◆ __construct()

shibConfig::__construct ( )
protected

Definition at line 70 of file class.shibConfig.php.

71 {
72 global $DIC;
73 $ilSetting = $DIC->settings();
74 foreach (array_keys(get_class_vars('shibConfig')) as $field) {
75 $str = $ilSetting->get('shib_' . $field);
76 if ($str !== null) {
77 $this->{$field} = $str;
78 }
79 }
80 }
global $ilSetting
Definition: privfeed.php:31
global $DIC
Definition: shib_login.php:26

References $DIC, and $ilSetting.

Member Function Documentation

◆ getCity()

shibConfig::getCity ( )

Definition at line 107 of file class.shibConfig.php.

107 : string
108 {
109 return $this->city;
110 }

References $city.

◆ getCountry()

shibConfig::getCountry ( )

Definition at line 117 of file class.shibConfig.php.

117 : string
118 {
119 return $this->country;
120 }

References $country.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getDataConv()

shibConfig::getDataConv ( )

Definition at line 127 of file class.shibConfig.php.

127 : string
128 {
129 return $this->data_conv;
130 }

References $data_conv.

◆ getDepartment()

shibConfig::getDepartment ( )

Definition at line 137 of file class.shibConfig.php.

137 : string
138 {
139 return $this->department;
140 }
string $department

References $department.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getEmail()

shibConfig::getEmail ( )

Definition at line 147 of file class.shibConfig.php.

147 : string
148 {
149 return explode(';', $this->email)[0];
150 }

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getFax()

shibConfig::getFax ( )

Definition at line 157 of file class.shibConfig.php.

157 : string
158 {
159 return $this->fax;
160 }

References $fax.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getFirstname()

shibConfig::getFirstname ( )

Definition at line 167 of file class.shibConfig.php.

167 : string
168 {
169 return $this->firstname;
170 }

References $firstname.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getGender()

shibConfig::getGender ( )

Definition at line 177 of file class.shibConfig.php.

177 : string
178 {
179 return $this->gender;
180 }

References $gender.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getHobby()

shibConfig::getHobby ( )

Definition at line 187 of file class.shibConfig.php.

187 : string
188 {
189 return $this->hobby;
190 }

References $hobby.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getInstance()

static shibConfig::getInstance ( )
static

Reimplemented in shibServerData.

Definition at line 82 of file class.shibConfig.php.

83 {
84 if (!isset(self::$cache)) {
85 self::$cache = new self();
86 }
87
88 return self::$cache;
89 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static shibConfig $cache

References $cache.

Referenced by shibServerData\__construct(), shibUser\create(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getInstitution()

shibConfig::getInstitution ( )

Definition at line 197 of file class.shibConfig.php.

197 : string
198 {
199 return $this->institution;
200 }
string $institution

References $institution.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getLanguage()

shibConfig::getLanguage ( )

Definition at line 207 of file class.shibConfig.php.

207 : string
208 {
209 return $this->language;
210 }

References $language.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getLastname()

shibConfig::getLastname ( )

Definition at line 217 of file class.shibConfig.php.

217 : string
218 {
219 return $this->lastname;
220 }

References $lastname.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getLogin()

shibConfig::getLogin ( )

Definition at line 227 of file class.shibConfig.php.

227 : string
228 {
229 return $this->login;
230 }

References $login.

Referenced by shibUser\buildInstance(), and shibUser\createFields().

+ Here is the caller graph for this function:

◆ getMatriculation()

shibConfig::getMatriculation ( )

Definition at line 237 of file class.shibConfig.php.

237 : string
238 {
240 }
string $matriculation

References $matriculation.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getPhoneHome()

shibConfig::getPhoneHome ( )

Definition at line 247 of file class.shibConfig.php.

247 : string
248 {
249 return $this->phone_home;
250 }
string $phone_home

References $phone_home.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getPhoneMobile()

shibConfig::getPhoneMobile ( )

Definition at line 257 of file class.shibConfig.php.

257 : string
258 {
259 return $this->phone_mobile;
260 }
string $phone_mobile

References $phone_mobile.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getPhoneOffice()

shibConfig::getPhoneOffice ( )

Definition at line 267 of file class.shibConfig.php.

267 : string
268 {
269 return $this->phone_office;
270 }
string $phone_office

References $phone_office.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getStreet()

shibConfig::getStreet ( )

Definition at line 277 of file class.shibConfig.php.

277 : string
278 {
279 return $this->street;
280 }

References $street.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getTitle()

shibConfig::getTitle ( )

Definition at line 287 of file class.shibConfig.php.

287 : string
288 {
289 return $this->title;
290 }

References $title.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ getUpdateCity()

shibConfig::getUpdateCity ( )

Definition at line 297 of file class.shibConfig.php.

297 : bool
298 {
299 return $this->update_city;
300 }

References $update_city.

◆ getUpdateCountry()

shibConfig::getUpdateCountry ( )

Definition at line 307 of file class.shibConfig.php.

307 : bool
308 {
310 }

References $update_country.

◆ getUpdateDataConv()

shibConfig::getUpdateDataConv ( )

Definition at line 317 of file class.shibConfig.php.

317 : bool
318 {
320 }
bool $update_data_conv

References $update_data_conv.

◆ getUpdateDepartment()

shibConfig::getUpdateDepartment ( )

Definition at line 327 of file class.shibConfig.php.

327 : bool
328 {
330 }
bool $update_department

References $update_department.

◆ getUpdateEmail()

shibConfig::getUpdateEmail ( )

Definition at line 337 of file class.shibConfig.php.

337 : bool
338 {
339 return $this->update_email;
340 }

References $update_email.

◆ getUpdateFax()

shibConfig::getUpdateFax ( )

Definition at line 347 of file class.shibConfig.php.

347 : bool
348 {
349 return $this->update_fax;
350 }

References $update_fax.

◆ getUpdateFirstname()

shibConfig::getUpdateFirstname ( )

Definition at line 503 of file class.shibConfig.php.

503 : bool
504 {
506 }
bool $update_firstname

References $update_firstname.

◆ getUpdateGender()

shibConfig::getUpdateGender ( )

Definition at line 357 of file class.shibConfig.php.

357 : bool
358 {
360 }

References $update_gender.

◆ getUpdateHobby()

shibConfig::getUpdateHobby ( )

Definition at line 367 of file class.shibConfig.php.

367 : bool
368 {
369 return $this->update_hobby;
370 }

References $update_hobby.

◆ getUpdateInstitution()

shibConfig::getUpdateInstitution ( )

Definition at line 377 of file class.shibConfig.php.

377 : bool
378 {
380 }
bool $update_institution

References $update_institution.

◆ getUpdateLanguage()

shibConfig::getUpdateLanguage ( )

Definition at line 387 of file class.shibConfig.php.

387 : bool
388 {
390 }

References $update_language.

◆ getUpdateLastname()

shibConfig::getUpdateLastname ( )

Definition at line 513 of file class.shibConfig.php.

513 : bool
514 {
516 }

References $update_lastname.

◆ getUpdateLogin()

shibConfig::getUpdateLogin ( )

Definition at line 397 of file class.shibConfig.php.

397 : bool
398 {
399 return $this->update_login;
400 }

References $update_login.

◆ getUpdateMatriculation()

shibConfig::getUpdateMatriculation ( )

Definition at line 407 of file class.shibConfig.php.

407 : bool
408 {
410 }
bool $update_matriculation

References $update_matriculation.

◆ getUpdatePhoneHome()

shibConfig::getUpdatePhoneHome ( )

Definition at line 417 of file class.shibConfig.php.

417 : bool
418 {
420 }
bool $update_phone_home

References $update_phone_home.

◆ getUpdatePhoneMobile()

shibConfig::getUpdatePhoneMobile ( )

Definition at line 427 of file class.shibConfig.php.

427 : bool
428 {
430 }
bool $update_phone_mobile

References $update_phone_mobile.

◆ getUpdatePhoneOffice()

shibConfig::getUpdatePhoneOffice ( )

Definition at line 437 of file class.shibConfig.php.

437 : bool
438 {
440 }
bool $update_phone_office

References $update_phone_office.

◆ getUpdateStreet()

shibConfig::getUpdateStreet ( )

Definition at line 447 of file class.shibConfig.php.

447 : bool
448 {
450 }

References $update_street.

◆ getUpdateTitle()

shibConfig::getUpdateTitle ( )
Returns
mixed

Definition at line 463 of file class.shibConfig.php.

463 : bool
464 {
465 return $this->update_title;
466 }

References $update_title.

◆ getUpdateZipcode()

shibConfig::getUpdateZipcode ( )

Definition at line 473 of file class.shibConfig.php.

473 : bool
474 {
476 }

References $update_zipcode.

◆ getUserDefaultRole()

shibConfig::getUserDefaultRole ( )

Definition at line 493 of file class.shibConfig.php.

493 : int
494 {
496 }
string $user_default_role

References $user_default_role.

◆ getValueByKey()

shibConfig::getValueByKey ( string  $key)
Returns
mixed

Definition at line 94 of file class.shibConfig.php.

95 {
96 if ($key === 'cache') {
97 return null;
98 }
99 return $this->{$key};
100 }

◆ getZipcode()

shibConfig::getZipcode ( )

Definition at line 483 of file class.shibConfig.php.

483 : string
484 {
485 return $this->zipcode;
486 }

References $zipcode.

Referenced by shibUser\createFields(), and shibUser\updateFields().

+ Here is the caller graph for this function:

◆ isActivateNew()

shibConfig::isActivateNew ( )

Definition at line 518 of file class.shibConfig.php.

518 : bool
519 {
520 return $this->activate_new;
521 }

References $activate_new.

◆ setActivateNew()

shibConfig::setActivateNew ( bool  $activate_new)

Definition at line 523 of file class.shibConfig.php.

523 : void
524 {
525 $this->activate_new = $activate_new;
526 }

References $activate_new.

◆ setCity()

shibConfig::setCity ( string  $city)

Definition at line 102 of file class.shibConfig.php.

102 : void
103 {
104 $this->city = $city;
105 }

References $city.

◆ setCountry()

shibConfig::setCountry ( string  $country)

Definition at line 112 of file class.shibConfig.php.

112 : void
113 {
114 $this->country = $country;
115 }

References $country.

◆ setDataConv()

shibConfig::setDataConv ( string  $data_conv)

Definition at line 122 of file class.shibConfig.php.

122 : void
123 {
124 $this->data_conv = $data_conv;
125 }

References $data_conv.

◆ setDepartment()

shibConfig::setDepartment ( string  $department)

Definition at line 132 of file class.shibConfig.php.

132 : void
133 {
134 $this->department = $department;
135 }

References $department.

◆ setEmail()

shibConfig::setEmail ( string  $email)

Definition at line 142 of file class.shibConfig.php.

142 : void
143 {
144 $this->email = $email;
145 }

References $email.

◆ setFax()

shibConfig::setFax ( string  $fax)

Definition at line 152 of file class.shibConfig.php.

152 : void
153 {
154 $this->fax = $fax;
155 }

References $fax.

◆ setFirstname()

shibConfig::setFirstname ( string  $firstname)

Definition at line 162 of file class.shibConfig.php.

162 : void
163 {
164 $this->firstname = $firstname;
165 }

References $firstname.

◆ setGender()

shibConfig::setGender ( string  $gender)

Definition at line 172 of file class.shibConfig.php.

172 : void
173 {
174 $this->gender = $gender;
175 }

References $gender.

◆ setHobby()

shibConfig::setHobby ( string  $hobby)

Definition at line 182 of file class.shibConfig.php.

182 : void
183 {
184 $this->hobby = $hobby;
185 }

References $hobby.

◆ setInstitution()

shibConfig::setInstitution ( string  $institution)

Definition at line 192 of file class.shibConfig.php.

192 : void
193 {
194 $this->institution = $institution;
195 }

References $institution.

◆ setLanguage()

shibConfig::setLanguage ( string  $language)

Definition at line 202 of file class.shibConfig.php.

202 : void
203 {
204 $this->language = $language;
205 }

References $language, and ILIAS\UI\examples\Symbol\Glyph\Language\language().

+ Here is the call graph for this function:

◆ setLastname()

shibConfig::setLastname ( string  $lastname)

Definition at line 212 of file class.shibConfig.php.

212 : void
213 {
214 $this->lastname = $lastname;
215 }

References $lastname.

◆ setLogin()

shibConfig::setLogin ( string  $login)

Definition at line 222 of file class.shibConfig.php.

222 : void
223 {
224 $this->login = $login;
225 }

References $login, and ILIAS\UI\examples\Symbol\Glyph\Login\login().

+ Here is the call graph for this function:

◆ setMatriculation()

shibConfig::setMatriculation ( string  $matriculation)

Definition at line 232 of file class.shibConfig.php.

232 : void
233 {
234 $this->matriculation = $matriculation;
235 }

References $matriculation.

◆ setPhoneHome()

shibConfig::setPhoneHome ( string  $phone_home)

Definition at line 242 of file class.shibConfig.php.

242 : void
243 {
244 $this->phone_home = $phone_home;
245 }

References $phone_home.

◆ setPhoneMobile()

shibConfig::setPhoneMobile ( string  $phone_mobile)

Definition at line 252 of file class.shibConfig.php.

252 : void
253 {
254 $this->phone_mobile = $phone_mobile;
255 }

References $phone_mobile.

◆ setPhoneOffice()

shibConfig::setPhoneOffice ( string  $phone_office)

Definition at line 262 of file class.shibConfig.php.

262 : void
263 {
264 $this->phone_office = $phone_office;
265 }

References $phone_office.

◆ setStreet()

shibConfig::setStreet ( string  $street)

Definition at line 272 of file class.shibConfig.php.

272 : void
273 {
274 $this->street = $street;
275 }

References $street.

◆ setTitle()

shibConfig::setTitle ( string  $title)

Definition at line 282 of file class.shibConfig.php.

282 : void
283 {
284 $this->title = $title;
285 }

References $title.

◆ setUpdateCity()

shibConfig::setUpdateCity ( bool  $update_city)

Definition at line 292 of file class.shibConfig.php.

292 : void
293 {
294 $this->update_city = $update_city;
295 }

References $update_city.

◆ setUpdateCountry()

shibConfig::setUpdateCountry ( bool  $update_country)

Definition at line 302 of file class.shibConfig.php.

302 : void
303 {
304 $this->update_country = $update_country;
305 }

References $update_country.

◆ setUpdateDataConv()

shibConfig::setUpdateDataConv ( bool  $update_data_conv)

Definition at line 312 of file class.shibConfig.php.

312 : void
313 {
314 $this->update_data_conv = $update_data_conv;
315 }

References $update_data_conv.

◆ setUpdateDepartment()

shibConfig::setUpdateDepartment ( bool  $update_department)

Definition at line 322 of file class.shibConfig.php.

322 : void
323 {
324 $this->update_department = $update_department;
325 }

References $update_department.

◆ setUpdateEmail()

shibConfig::setUpdateEmail ( bool  $update_email)

Definition at line 332 of file class.shibConfig.php.

332 : void
333 {
334 $this->update_email = $update_email;
335 }

References $update_email.

◆ setUpdateFax()

shibConfig::setUpdateFax ( bool  $update_fax)

Definition at line 342 of file class.shibConfig.php.

342 : void
343 {
344 $this->update_fax = $update_fax;
345 }

References $update_fax.

◆ setUpdateFirstname()

shibConfig::setUpdateFirstname ( bool  $update_firstname)

Definition at line 498 of file class.shibConfig.php.

498 : void
499 {
500 $this->update_firstname = $update_firstname;
501 }

References $update_firstname.

◆ setUpdateGender()

shibConfig::setUpdateGender ( bool  $update_gender)

Definition at line 352 of file class.shibConfig.php.

352 : void
353 {
354 $this->update_gender = $update_gender;
355 }

References $update_gender.

◆ setUpdateHobby()

shibConfig::setUpdateHobby ( bool  $update_hobby)

Definition at line 362 of file class.shibConfig.php.

362 : void
363 {
364 $this->update_hobby = $update_hobby;
365 }

References $update_hobby.

◆ setUpdateInstitution()

shibConfig::setUpdateInstitution ( bool  $update_institution)

Definition at line 372 of file class.shibConfig.php.

372 : void
373 {
374 $this->update_institution = $update_institution;
375 }

References $update_institution.

◆ setUpdateLanguage()

shibConfig::setUpdateLanguage ( bool  $update_language)

Definition at line 382 of file class.shibConfig.php.

382 : void
383 {
384 $this->update_language = $update_language;
385 }

References $update_language.

◆ setUpdateLastname()

shibConfig::setUpdateLastname ( bool  $update_lastname)

Definition at line 508 of file class.shibConfig.php.

508 : void
509 {
510 $this->update_lastname = $update_lastname;
511 }

References $update_lastname.

◆ setUpdateLogin()

shibConfig::setUpdateLogin ( bool  $update_login)

Definition at line 392 of file class.shibConfig.php.

392 : void
393 {
394 $this->update_login = $update_login;
395 }

References $update_login.

◆ setUpdateMatriculation()

shibConfig::setUpdateMatriculation ( bool  $update_matriculation)

Definition at line 402 of file class.shibConfig.php.

402 : void
403 {
404 $this->update_matriculation = $update_matriculation;
405 }

References $update_matriculation.

◆ setUpdatePhoneHome()

shibConfig::setUpdatePhoneHome ( bool  $update_phone_home)

Definition at line 412 of file class.shibConfig.php.

412 : void
413 {
414 $this->update_phone_home = $update_phone_home;
415 }

References $update_phone_home.

◆ setUpdatePhoneMobile()

shibConfig::setUpdatePhoneMobile ( bool  $update_phone_mobile)

Definition at line 422 of file class.shibConfig.php.

422 : void
423 {
424 $this->update_phone_mobile = $update_phone_mobile;
425 }

References $update_phone_mobile.

◆ setUpdatePhoneOffice()

shibConfig::setUpdatePhoneOffice ( bool  $update_phone_office)

Definition at line 432 of file class.shibConfig.php.

432 : void
433 {
434 $this->update_phone_office = $update_phone_office;
435 }

References $update_phone_office.

◆ setUpdateStreet()

shibConfig::setUpdateStreet ( bool  $update_street)

Definition at line 442 of file class.shibConfig.php.

442 : void
443 {
444 $this->update_street = $update_street;
445 }

References $update_street.

◆ setUpdateTitle()

shibConfig::setUpdateTitle ( bool  $update_title)
Parameters
mixed$update_title

Definition at line 455 of file class.shibConfig.php.

455 : void
456 {
457 $this->update_title = $update_title;
458 }

References $update_title.

◆ setUpdateZipcode()

shibConfig::setUpdateZipcode ( bool  $update_zipcode)

Definition at line 468 of file class.shibConfig.php.

468 : void
469 {
470 $this->update_zipcode = $update_zipcode;
471 }

References $update_zipcode.

◆ setUserDefaultRole()

shibConfig::setUserDefaultRole ( int  $user_default_role)

Definition at line 488 of file class.shibConfig.php.

488 : void
489 {
490 $this->user_default_role = $user_default_role;
491 }

References $user_default_role.

◆ setZipcode()

shibConfig::setZipcode ( string  $zipcode)

Definition at line 478 of file class.shibConfig.php.

478 : void
479 {
480 $this->zipcode = $zipcode;
481 }

References $zipcode.

Field Documentation

◆ $activate_new

bool shibConfig::$activate_new = false
protected

Definition at line 67 of file class.shibConfig.php.

Referenced by isActivateNew(), and setActivateNew().

◆ $cache

shibConfig shibConfig::$cache = null
staticprotected

Definition at line 68 of file class.shibConfig.php.

Referenced by getInstance().

◆ $city

string shibConfig::$city = ''
protected

Definition at line 42 of file class.shibConfig.php.

Referenced by getCity(), and setCity().

◆ $country

string shibConfig::$country = ''
protected

Definition at line 46 of file class.shibConfig.php.

Referenced by getCountry(), and setCountry().

◆ $data_conv

string shibConfig::$data_conv = ''
protected

Definition at line 64 of file class.shibConfig.php.

Referenced by getDataConv(), and setDataConv().

◆ $department

string shibConfig::$department = ''
protected

Definition at line 38 of file class.shibConfig.php.

Referenced by getDepartment(), and setDepartment().

◆ $email

string shibConfig::$email = ''
protected

Definition at line 58 of file class.shibConfig.php.

Referenced by setEmail().

◆ $fax

string shibConfig::$fax = ''
protected

Definition at line 54 of file class.shibConfig.php.

Referenced by getFax(), and setFax().

◆ $firstname

string shibConfig::$firstname = ''
protected

Definition at line 26 of file class.shibConfig.php.

Referenced by getFirstname(), and setFirstname().

◆ $gender

string shibConfig::$gender = ''
protected

Definition at line 30 of file class.shibConfig.php.

Referenced by getGender(), and setGender().

◆ $hobby

string shibConfig::$hobby = ''
protected

Definition at line 60 of file class.shibConfig.php.

Referenced by getHobby(), and setHobby().

◆ $institution

string shibConfig::$institution = ''
protected

Definition at line 36 of file class.shibConfig.php.

Referenced by getInstitution(), and setInstitution().

◆ $language

string shibConfig::$language = ''
protected

Definition at line 62 of file class.shibConfig.php.

Referenced by getLanguage(), and setLanguage().

◆ $lastname

string shibConfig::$lastname = ''
protected

Definition at line 28 of file class.shibConfig.php.

Referenced by getLastname(), and setLastname().

◆ $login

string shibConfig::$login = ''
protected

Definition at line 32 of file class.shibConfig.php.

Referenced by getLogin(), and setLogin().

◆ $matriculation

string shibConfig::$matriculation = ''
protected

Definition at line 56 of file class.shibConfig.php.

Referenced by getMatriculation(), and setMatriculation().

◆ $phone_home

string shibConfig::$phone_home = ''
protected

Definition at line 50 of file class.shibConfig.php.

Referenced by getPhoneHome(), and setPhoneHome().

◆ $phone_mobile

string shibConfig::$phone_mobile = ''
protected

Definition at line 52 of file class.shibConfig.php.

Referenced by getPhoneMobile(), and setPhoneMobile().

◆ $phone_office

string shibConfig::$phone_office = ''
protected

Definition at line 48 of file class.shibConfig.php.

Referenced by getPhoneOffice(), and setPhoneOffice().

◆ $street

string shibConfig::$street = ''
protected

Definition at line 40 of file class.shibConfig.php.

Referenced by getStreet(), and setStreet().

◆ $title

string shibConfig::$title = ''
protected

Definition at line 34 of file class.shibConfig.php.

Referenced by getTitle(), and setTitle().

◆ $update_city

bool shibConfig::$update_city = false
protected

Definition at line 43 of file class.shibConfig.php.

Referenced by getUpdateCity(), and setUpdateCity().

◆ $update_country

bool shibConfig::$update_country = false
protected

Definition at line 47 of file class.shibConfig.php.

Referenced by getUpdateCountry(), and setUpdateCountry().

◆ $update_data_conv

bool shibConfig::$update_data_conv = false
protected

Definition at line 65 of file class.shibConfig.php.

Referenced by getUpdateDataConv(), and setUpdateDataConv().

◆ $update_department

bool shibConfig::$update_department = false
protected

Definition at line 39 of file class.shibConfig.php.

Referenced by getUpdateDepartment(), and setUpdateDepartment().

◆ $update_email

bool shibConfig::$update_email = false
protected

Definition at line 59 of file class.shibConfig.php.

Referenced by getUpdateEmail(), and setUpdateEmail().

◆ $update_fax

bool shibConfig::$update_fax = false
protected

Definition at line 55 of file class.shibConfig.php.

Referenced by getUpdateFax(), and setUpdateFax().

◆ $update_firstname

bool shibConfig::$update_firstname = false
protected

Definition at line 27 of file class.shibConfig.php.

Referenced by getUpdateFirstname(), and setUpdateFirstname().

◆ $update_gender

bool shibConfig::$update_gender = false
protected

Definition at line 31 of file class.shibConfig.php.

Referenced by getUpdateGender(), and setUpdateGender().

◆ $update_hobby

bool shibConfig::$update_hobby = false
protected

Definition at line 61 of file class.shibConfig.php.

Referenced by getUpdateHobby(), and setUpdateHobby().

◆ $update_institution

bool shibConfig::$update_institution = false
protected

Definition at line 37 of file class.shibConfig.php.

Referenced by getUpdateInstitution(), and setUpdateInstitution().

◆ $update_language

bool shibConfig::$update_language = false
protected

Definition at line 63 of file class.shibConfig.php.

Referenced by getUpdateLanguage(), and setUpdateLanguage().

◆ $update_lastname

bool shibConfig::$update_lastname = false
protected

Definition at line 29 of file class.shibConfig.php.

Referenced by getUpdateLastname(), and setUpdateLastname().

◆ $update_login

bool shibConfig::$update_login = false
protected

Definition at line 33 of file class.shibConfig.php.

Referenced by getUpdateLogin(), and setUpdateLogin().

◆ $update_matriculation

bool shibConfig::$update_matriculation = false
protected

Definition at line 57 of file class.shibConfig.php.

Referenced by getUpdateMatriculation(), and setUpdateMatriculation().

◆ $update_phone_home

bool shibConfig::$update_phone_home = false
protected

Definition at line 51 of file class.shibConfig.php.

Referenced by getUpdatePhoneHome(), and setUpdatePhoneHome().

◆ $update_phone_mobile

bool shibConfig::$update_phone_mobile = false
protected

Definition at line 53 of file class.shibConfig.php.

Referenced by getUpdatePhoneMobile(), and setUpdatePhoneMobile().

◆ $update_phone_office

bool shibConfig::$update_phone_office = false
protected

Definition at line 49 of file class.shibConfig.php.

Referenced by getUpdatePhoneOffice(), and setUpdatePhoneOffice().

◆ $update_street

bool shibConfig::$update_street = false
protected

Definition at line 41 of file class.shibConfig.php.

Referenced by getUpdateStreet(), and setUpdateStreet().

◆ $update_title

bool shibConfig::$update_title = false
protected

Definition at line 35 of file class.shibConfig.php.

Referenced by getUpdateTitle(), and setUpdateTitle().

◆ $update_zipcode

bool shibConfig::$update_zipcode = false
protected

Definition at line 45 of file class.shibConfig.php.

Referenced by getUpdateZipcode(), and setUpdateZipcode().

◆ $user_default_role

string shibConfig::$user_default_role = '4'
protected

Definition at line 66 of file class.shibConfig.php.

Referenced by getUserDefaultRole(), and setUserDefaultRole().

◆ $zipcode

string shibConfig::$zipcode = ''
protected

Definition at line 44 of file class.shibConfig.php.

Referenced by getZipcode(), and setZipcode().


The documentation for this class was generated from the following file: