Class containing the options for the OpenID database store.
Example of use:
Source for this file: /AuthenticationDatabaseTiein/src/options/openid_db_store_options.php
ezcBaseOptions | --ezcAuthenticationOpenidStoreOptions | --ezcAuthenticationOpenidDbStoreOptions
Version: | //autogentag// |
array(string=>mixed) | read/write |
$tableAssociations
A structure defining how the table which holds the nonces looks like. The default is array( 'name' => 'openid_associations', 'fields' => array( 'url' => 'url', 'association' => 'association' ) ). The column nonce is a key in the table. The names of the columns and of the table name can be changed ('nonce', 'timestamp', 'openid_associations'). |
array(string=>mixed) | read/write |
$tableNonces
A structure defining how the table which holds the nonces looks like. The default is array( 'name' => 'openid_nonces', 'fields' => array( 'nonce' => 'nonce', 'timestamp' => 'timestamp' ) ). The column nonce is a key in the table. The names of the columns and of the table name can be changed ('nonce', 'timestamp', 'openid_nonces'). |
From ezcBaseOptions | |
---|---|
protected |
ezcBaseOptions::$properties
|
public ezcAuthenticationOpenidDbStoreOptions |
__construct(
[ $options
= array()] )
Constructs an object with the specified values. |
From ezcAuthenticationOpenidStoreOptions | |
---|---|
public ezcAuthenticationOpenidStoreOptions |
ezcAuthenticationOpenidStoreOptions::__construct()
Constructs an object with the specified values. |
From ezcBaseOptions | |
public ezcBaseOptions |
ezcBaseOptions::__construct()
Construct a new options object. |
public void |
ezcBaseOptions::merge()
Merge an array into the actual options object. |
public bool |
ezcBaseOptions::offsetExists()
Returns if an option exists. |
public mixed |
ezcBaseOptions::offsetGet()
Returns an option value. |
public void |
ezcBaseOptions::offsetSet()
Set an option. |
public void |
ezcBaseOptions::offsetUnset()
Unset an option. |
Constructs an object with the specified values.
Name | Type | Description |
---|---|---|
$options |
array(string=>mixed) | Options for this class |
Type | Description |
---|---|
ezcBaseValueException |
if $options contains a property with a value not allowed |
ezcBasePropertyNotFoundException |
if $options contains a property not defined |
Method | Description |
---|---|
ezcAuthenticationOpenidStoreOptions::__construct() |
Constructs an object with the specified values. |