You are here

function clients_drupal_encrypt in Web Service Clients 7

Same name and namespace in other branches
  1. 6.2 connections/clients_drupal/clients_drupal.module \clients_drupal_encrypt()
  2. 6 backends/clients_drupal/clients_drupal.module \clients_drupal_encrypt()
  3. 7.3 connections/clients_drupal/clients_drupal.module \clients_drupal_encrypt()
  4. 7.2 connections/clients_drupal/clients_drupal.module \clients_drupal_encrypt()
1 call to clients_drupal_encrypt()
clients_connection_drupal_services::connectionSettingsForm_submit in backends/clients_drupal/clients_drupal.inc
Submit handler for saving/updating connections of this class.

File

backends/clients_drupal/clients_drupal.module, line 271
Drupal Services plugin for Clients module

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);
  }
}