ILIAS  trunk Revision v11.0_alpha-1769-g99a433fe2dc
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
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.

References $DIC, $ilSetting, and null.

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  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
global $ilSetting
Definition: privfeed.php:31

Member Function Documentation

◆ getCity()

shibConfig::getCity ( )

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

References $city.

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

◆ getCountry()

shibConfig::getCountry ( )

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

References $country.

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

117  : string
118  {
119  return $this->country;
120  }
+ Here is the caller graph for this function:

◆ getDataConv()

shibConfig::getDataConv ( )

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

References $data_conv.

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

◆ getDepartment()

shibConfig::getDepartment ( )

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

References $department.

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

137  : string
138  {
139  return $this->department;
140  }
string $department
+ Here is the caller graph for this function:

◆ getEmail()

shibConfig::getEmail ( )

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

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

147  : string
148  {
149  return explode(';', $this->email)[0];
150  }
+ Here is the caller graph for this function:

◆ getFax()

shibConfig::getFax ( )

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

References $fax.

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

157  : string
158  {
159  return $this->fax;
160  }
+ Here is the caller graph for this function:

◆ getFirstname()

shibConfig::getFirstname ( )

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

References $firstname.

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

167  : string
168  {
169  return $this->firstname;
170  }
+ Here is the caller graph for this function:

◆ getGender()

shibConfig::getGender ( )

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

References $gender.

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

177  : string
178  {
179  return $this->gender;
180  }
+ Here is the caller graph for this function:

◆ getHobby()

shibConfig::getHobby ( )

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

References $hobby.

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

187  : string
188  {
189  return $this->hobby;
190  }
+ Here is the caller graph for this function:

◆ getInstance()

static shibConfig::getInstance ( )
static

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

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

82  : shibConfig
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...
+ Here is the caller graph for this function:

◆ getInstitution()

shibConfig::getInstitution ( )

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

References $institution.

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

197  : string
198  {
199  return $this->institution;
200  }
string $institution
+ Here is the caller graph for this function:

◆ getLanguage()

shibConfig::getLanguage ( )

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

References $language.

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

207  : string
208  {
209  return $this->language;
210  }
+ Here is the caller graph for this function:

◆ getLastname()

shibConfig::getLastname ( )

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

References $lastname.

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

217  : string
218  {
219  return $this->lastname;
220  }
+ Here is the caller graph for this function:

◆ getLogin()

shibConfig::getLogin ( )

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

References $login.

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

227  : string
228  {
229  return $this->login;
230  }
+ Here is the caller graph for this function:

◆ getMatriculation()

shibConfig::getMatriculation ( )

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

References $matriculation.

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

237  : string
238  {
239  return $this->matriculation;
240  }
string $matriculation
+ Here is the caller graph for this function:

◆ getPhoneHome()

shibConfig::getPhoneHome ( )

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

References $phone_home.

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

247  : string
248  {
249  return $this->phone_home;
250  }
string $phone_home
+ Here is the caller graph for this function:

◆ getPhoneMobile()

shibConfig::getPhoneMobile ( )

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

References $phone_mobile.

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

257  : string
258  {
259  return $this->phone_mobile;
260  }
string $phone_mobile
+ Here is the caller graph for this function:

◆ getPhoneOffice()

shibConfig::getPhoneOffice ( )

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

References $phone_office.

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

267  : string
268  {
269  return $this->phone_office;
270  }
string $phone_office
+ Here is the caller graph for this function:

◆ getStreet()

shibConfig::getStreet ( )

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

References $street.

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

277  : string
278  {
279  return $this->street;
280  }
+ Here is the caller graph for this function:

◆ getTitle()

shibConfig::getTitle ( )

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

References $title.

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

287  : string
288  {
289  return $this->title;
290  }
+ Here is the caller graph for this function:

◆ getUpdateCity()

shibConfig::getUpdateCity ( )

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

References $update_city.

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

◆ getUpdateCountry()

shibConfig::getUpdateCountry ( )

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

References $update_country.

307  : bool
308  {
309  return $this->update_country;
310  }

◆ getUpdateDataConv()

shibConfig::getUpdateDataConv ( )

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

References $update_data_conv.

317  : bool
318  {
320  }
bool $update_data_conv

◆ getUpdateDepartment()

shibConfig::getUpdateDepartment ( )

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

References $update_department.

327  : bool
328  {
330  }
bool $update_department

◆ getUpdateEmail()

shibConfig::getUpdateEmail ( )

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

References $update_email.

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

◆ getUpdateFax()

shibConfig::getUpdateFax ( )

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

References $update_fax.

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

◆ getUpdateFirstname()

shibConfig::getUpdateFirstname ( )

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

References $update_firstname.

503  : bool
504  {
506  }
bool $update_firstname

◆ getUpdateGender()

shibConfig::getUpdateGender ( )

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

References $update_gender.

357  : bool
358  {
359  return $this->update_gender;
360  }

◆ getUpdateHobby()

shibConfig::getUpdateHobby ( )

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

References $update_hobby.

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

◆ getUpdateInstitution()

shibConfig::getUpdateInstitution ( )

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

References $update_institution.

377  : bool
378  {
380  }
bool $update_institution

◆ getUpdateLanguage()

shibConfig::getUpdateLanguage ( )

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

References $update_language.

387  : bool
388  {
389  return $this->update_language;
390  }

◆ getUpdateLastname()

shibConfig::getUpdateLastname ( )

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

References $update_lastname.

513  : bool
514  {
515  return $this->update_lastname;
516  }

◆ getUpdateLogin()

shibConfig::getUpdateLogin ( )

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

References $update_login.

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

◆ getUpdateMatriculation()

shibConfig::getUpdateMatriculation ( )

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

References $update_matriculation.

407  : bool
408  {
410  }
bool $update_matriculation

◆ getUpdatePhoneHome()

shibConfig::getUpdatePhoneHome ( )

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

References $update_phone_home.

417  : bool
418  {
420  }
bool $update_phone_home

◆ getUpdatePhoneMobile()

shibConfig::getUpdatePhoneMobile ( )

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

References $update_phone_mobile.

427  : bool
428  {
430  }
bool $update_phone_mobile

◆ getUpdatePhoneOffice()

shibConfig::getUpdatePhoneOffice ( )

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

References $update_phone_office.

437  : bool
438  {
440  }
bool $update_phone_office

◆ getUpdateStreet()

shibConfig::getUpdateStreet ( )

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

References $update_street.

447  : bool
448  {
449  return $this->update_street;
450  }

◆ getUpdateTitle()

shibConfig::getUpdateTitle ( )
Returns
mixed

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

References $update_title.

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

◆ getUpdateZipcode()

shibConfig::getUpdateZipcode ( )

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

References $update_zipcode.

473  : bool
474  {
475  return $this->update_zipcode;
476  }

◆ getUserDefaultRole()

shibConfig::getUserDefaultRole ( )

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

References $user_default_role.

493  : int
494  {
496  }
string $user_default_role

◆ getValueByKey()

shibConfig::getValueByKey ( string  $key)
Returns
mixed

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

References null.

95  {
96  if ($key === 'cache') {
97  return null;
98  }
99  return $this->{$key};
100  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null

◆ getZipcode()

shibConfig::getZipcode ( )

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

References $zipcode.

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

483  : string
484  {
485  return $this->zipcode;
486  }
+ Here is the caller graph for this function:

◆ isActivateNew()

shibConfig::isActivateNew ( )

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

References $activate_new.

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

◆ setActivateNew()

shibConfig::setActivateNew ( bool  $activate_new)

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

References $activate_new.

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

◆ setCity()

shibConfig::setCity ( string  $city)

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

References $city.

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

◆ setCountry()

shibConfig::setCountry ( string  $country)

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

References $country.

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

◆ setDataConv()

shibConfig::setDataConv ( string  $data_conv)

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

References $data_conv.

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

◆ setDepartment()

shibConfig::setDepartment ( string  $department)

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

References $department.

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

◆ setEmail()

shibConfig::setEmail ( string  $email)

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

References $email.

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

◆ setFax()

shibConfig::setFax ( string  $fax)

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

References $fax.

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

◆ setFirstname()

shibConfig::setFirstname ( string  $firstname)

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

References $firstname.

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

◆ setGender()

shibConfig::setGender ( string  $gender)

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

References $gender.

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

◆ setHobby()

shibConfig::setHobby ( string  $hobby)

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

References $hobby.

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

◆ setInstitution()

shibConfig::setInstitution ( string  $institution)

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

References $institution.

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

◆ setLanguage()

shibConfig::setLanguage ( string  $language)

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

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

202  : void
203  {
204  $this->language = $language;
205  }
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
+ Here is the call graph for this function:

◆ setLastname()

shibConfig::setLastname ( string  $lastname)

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

References $lastname.

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

◆ setLogin()

shibConfig::setLogin ( string  $login)

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

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

222  : void
223  {
224  $this->login = $login;
225  }
login()
description: > Example for rendring a login glyph.
Definition: login.php:41
+ Here is the call graph for this function:

◆ setMatriculation()

shibConfig::setMatriculation ( string  $matriculation)

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

References $matriculation.

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

◆ setPhoneHome()

shibConfig::setPhoneHome ( string  $phone_home)

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

References $phone_home.

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

◆ setPhoneMobile()

shibConfig::setPhoneMobile ( string  $phone_mobile)

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

References $phone_mobile.

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

◆ setPhoneOffice()

shibConfig::setPhoneOffice ( string  $phone_office)

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

References $phone_office.

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

◆ setStreet()

shibConfig::setStreet ( string  $street)

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

References $street.

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

◆ setTitle()

shibConfig::setTitle ( string  $title)

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

References $title.

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

◆ setUpdateCity()

shibConfig::setUpdateCity ( bool  $update_city)

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

References $update_city.

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

◆ setUpdateCountry()

shibConfig::setUpdateCountry ( bool  $update_country)

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

References $update_country.

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

◆ setUpdateDataConv()

shibConfig::setUpdateDataConv ( bool  $update_data_conv)

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

References $update_data_conv.

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

◆ setUpdateDepartment()

shibConfig::setUpdateDepartment ( bool  $update_department)

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

References $update_department.

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

◆ setUpdateEmail()

shibConfig::setUpdateEmail ( bool  $update_email)

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

References $update_email.

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

◆ setUpdateFax()

shibConfig::setUpdateFax ( bool  $update_fax)

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

References $update_fax.

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

◆ setUpdateFirstname()

shibConfig::setUpdateFirstname ( bool  $update_firstname)

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

References $update_firstname.

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

◆ setUpdateGender()

shibConfig::setUpdateGender ( bool  $update_gender)

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

References $update_gender.

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

◆ setUpdateHobby()

shibConfig::setUpdateHobby ( bool  $update_hobby)

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

References $update_hobby.

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

◆ setUpdateInstitution()

shibConfig::setUpdateInstitution ( bool  $update_institution)

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

References $update_institution.

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

◆ setUpdateLanguage()

shibConfig::setUpdateLanguage ( bool  $update_language)

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

References $update_language.

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

◆ setUpdateLastname()

shibConfig::setUpdateLastname ( bool  $update_lastname)

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

References $update_lastname.

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

◆ setUpdateLogin()

shibConfig::setUpdateLogin ( bool  $update_login)

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

References $update_login.

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

◆ setUpdateMatriculation()

shibConfig::setUpdateMatriculation ( bool  $update_matriculation)

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

References $update_matriculation.

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

◆ setUpdatePhoneHome()

shibConfig::setUpdatePhoneHome ( bool  $update_phone_home)

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

References $update_phone_home.

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

◆ setUpdatePhoneMobile()

shibConfig::setUpdatePhoneMobile ( bool  $update_phone_mobile)

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

References $update_phone_mobile.

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

◆ setUpdatePhoneOffice()

shibConfig::setUpdatePhoneOffice ( bool  $update_phone_office)

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

References $update_phone_office.

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

◆ setUpdateStreet()

shibConfig::setUpdateStreet ( bool  $update_street)

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

References $update_street.

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

◆ setUpdateTitle()

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

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

References $update_title.

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

◆ setUpdateZipcode()

shibConfig::setUpdateZipcode ( bool  $update_zipcode)

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

References $update_zipcode.

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

◆ setUserDefaultRole()

shibConfig::setUserDefaultRole ( int  $user_default_role)

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

References $user_default_role.

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

◆ setZipcode()

shibConfig::setZipcode ( string  $zipcode)

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

References $zipcode.

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

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.

◆ $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: