PHP Classes

File: web/SSO/modules/core/docs/authproc_attributerealm.txt

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/core/docs/authproc_attributerealm.txt   Download  
File: web/SSO/modules/core/docs/authproc_attributerealm.txt
Role: Documentation
Content type: text/plain
Description: Documentation
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 774 bytes
 

Contents

Class file image Download
`core:AttributeRealm` ===================== This filter creates a new attribute with the realm of the user. The new attribute is names `realm` by default, but can be controlled by the `attributename` option. The realm is extracted from the attribute set as the user ID (eduPersonPrincipalName by default). The user ID attribute can be changed with the `userid.attribute` option in the IdP metadata. Examples -------- Create the `realm` attribute. 'authproc' => array( 50 => array( 'class' => 'core:AttributeRealm', ), ), Set the `schacHomeOrganization` attribute. 'authproc' => array( 50 => array( 'class' => 'core:AttributeRealm', 'attributename' => 'schacHomeOrganization', ), ),