function key_provider_config_delete_key_value in Key 7.3
Deletes the value of a key.
Parameters
array $config: The key configuration whose value will be deleted.
Return value
bool TRUE if successful, FALSE if unsuccessful.
1 string reference to 'key_provider_config_delete_key_value'
- config.inc in plugins/
key_provider/ config.inc
File
- plugins/
key_provider/ config.inc, line 115
Code
function key_provider_config_delete_key_value($config) {
// Nothing needs to be done, since the value will have been deleted
// with the key configuration.
return TRUE;
}