upgrade
This commit is contained in:
61
main/auth/shibboleth/lib/shibboleth_config.class.php
Normal file
61
main/auth/shibboleth/lib/shibboleth_config.class.php
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
namespace Shibboleth;
|
||||
|
||||
/**
|
||||
* Shibboleth configuration. All configuration for the Shibboleth authentication
|
||||
* plugin: field names mapping, etc.
|
||||
*
|
||||
* @license see /license.txt
|
||||
* @author Laurent Opprecht <laurent@opprecht.info>, Nicolas Rod for the University of Geneva
|
||||
*/
|
||||
class ShibbolethConfig
|
||||
{
|
||||
public $unique_id = '';
|
||||
public $firstname = '';
|
||||
public $lastname = '';
|
||||
public $email = '';
|
||||
public $language = '';
|
||||
public $gender = '';
|
||||
public $address = '';
|
||||
public $staff_category = '';
|
||||
public $home_organization_type = '';
|
||||
public $home_organization = '';
|
||||
public $affiliation = '';
|
||||
public $persistent_id = '';
|
||||
|
||||
public $default_status = Shibboleth::UNKNOWN_STATUS;
|
||||
|
||||
/**
|
||||
* Mapping of affiliation => right
|
||||
* @var array
|
||||
*/
|
||||
public $affiliation_status = array();
|
||||
|
||||
/**
|
||||
* Mapping of affiliation => bool. Display the request status form.
|
||||
* @var array
|
||||
*/
|
||||
public $affiliation_status_request = array();
|
||||
|
||||
/**
|
||||
* List of fields to update when the user already exists field_name => boolean.
|
||||
* @var array
|
||||
*/
|
||||
public $update_fields = array();
|
||||
|
||||
/*
|
||||
* True if email is mandatory. False otherwise.
|
||||
*/
|
||||
public $is_email_mandatory = true;
|
||||
|
||||
/**
|
||||
* The email of the shibboleth administrator.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $admnistrator_email = '';
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user