function clients_drupal_encrypt in Web Service Clients 6
Same name and namespace in other branches
- 6.2 connections/clients_drupal/clients_drupal.module \clients_drupal_encrypt()
- 7.3 connections/clients_drupal/clients_drupal.module \clients_drupal_encrypt()
- 7 backends/clients_drupal/clients_drupal.module \clients_drupal_encrypt()
- 7.2 connections/clients_drupal/clients_drupal.module \clients_drupal_encrypt()
2 calls to clients_drupal_encrypt()
- clients_drupal_clients_connection_edit in backends/
clients_drupal/ clients_drupal.module - Implementation of hook_clients_connection_edit()
- clients_drupal_clients_connection_save in backends/
clients_drupal/ clients_drupal.module - Implementation of hook_clients_connection_save()
File
- backends/
clients_drupal/ clients_drupal.module, line 454 - Drupal Services plugin for Clients module @author Django Beatty - adub
Code
function clients_drupal_encrypt($val) {
$encryption_method = variable_get('clients_drupal_encryption_method', 'no_encryption');
if ($encryption_method == 'no_encryption') {
return $val;
}
else {
return module_invoke($encryption_method, 'clients_drupal_encrypt', $val);
}
}