You are here

key_encrypt.module in Key 7.2

Same filename and directory in other branches
  1. 7.3 modules/key_encrypt/key_encrypt.module

Provides integration with Encrypt 2.x to allow keys managed within Key to be used for encryption.

File

modules/key_encrypt/key_encrypt.module
View source
<?php

/**
 * @file
 * Provides integration with Encrypt 2.x to allow keys managed within
 * Key to be used for encryption.
 */

/**
 * Implements hook_ctools_plugin_directory().
 */
function key_encrypt_ctools_plugin_directory($module, $plugin) {
  if ($module == 'encrypt' && !empty($plugin)) {
    return "plugins/{$plugin}";
  }
}