You are here

key_encrypt.module in Key 7.3

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

Allows Key to manage keys in Encrypt 7.x-2.x.

File

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

/**
 * @file
 * Allows Key to manage keys in Encrypt 7.x-2.x.
 */

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