public function clients_credentials_storage_variable::credentialsDelete in Web Service Clients 7.3
Erase credentials.
This should be called when a connection is deleted, or when a connection changes its credentials storage mechanism.
Parameters
$connection: The connection to delete credentials for.
File
- plugins/
clients_credentials_storage/ variables.inc, line 82
Class
- clients_credentials_storage_variable
- Plugin handler class.
Code
public function credentialsDelete($connection) {
variable_del($this
->variableName($connection));
}