Auth_OpenID_MDB2Store Auth_OpenID_MDB2Store(
connection
$connection, [associations_table:
$associations_table = null], [nonces_table:
$nonces_table = null]
)
|
|
This creates a new MDB2Store instance. It requires an established database connection be given to it, and it allows overriding the default table names.
Parameters:
|
connection |
$connection: |
This must be an established connection to a database of the correct type for the SQLStore subclass you're using. This must be a PEAR::MDB2 connection handle. |
|
associations_table: |
$associations_table: |
This is an optional parameter to specify the name of the table used for storing associations. The default value is 'oid_associations'. |
|
nonces_table: |
$nonces_table: |
This is an optional parameter to specify the name of the table used for storing nonces. The default value is 'oid_nonces'. |
void create_assoc_table(
)
|
|
void create_nonce_table(
)
|
|
void getAssociation(
$server_url, [
$handle = null]
)
|
|
Parameters:
Redefinition of:
- Auth_OpenID_OpenIDStore::getAssociation()
- This method returns an Association object from storage that matches the server URL and, if specified, handle. It returns null if no such association is found or if the matching association is expired.
void removeAssociation(
$server_url,
$handle
)
|
|
Parameters:
Redefinition of:
- Auth_OpenID_OpenIDStore::removeAssociation()
- This method removes the matching association if it's found, and returns whether the association was removed or not.
Resets the store by removing all records from the store's tables.
Redefinition of:
- Auth_OpenID_OpenIDStore::reset()
- Removes all entries from the store; implementation is optional.
void storeAssociation(
$server_url,
$association
)
|
|
Parameters:
|
|
$server_url: |
|
|
|
$association: |
|
Redefinition of:
- Auth_OpenID_OpenIDStore::storeAssociation()
- This method puts an Association object into storage, retrievable by server URL and handle.
void tableExists(
$table_name
)
|
|
Parameters: