You are here

function encrypt_drupal_variable_encrypt_key_providers in Encrypt 7.3

Same name and namespace in other branches
  1. 7.2 plugins/key_providers/drupal_variable.inc \encrypt_drupal_variable_encrypt_key_providers()

Implements MODULE_FILENAME_encrypt_key_providers().

1 call to encrypt_drupal_variable_encrypt_key_providers()
drupal_variable.inc in plugins/key_providers/drupal_variable.inc

File

plugins/key_providers/drupal_variable.inc, line 13

Code

function encrypt_drupal_variable_encrypt_key_providers() {
  return array(
    'title' => t('Drupal encrypt_drupal_variable_key variable'),
    'description' => t('Use a variable called encrypt_drupal_variable_key, preferably set in your settings.php $conf array.'),
    'key callback' => 'encrypt_get_encrypt_drupal_variable_key',
    'settings form' => NULL,
    'dependency callback' => '_encrypt_drupal_variable_is_present',
    'static key' => TRUE,
  );
}