You are here

encrypt_test.module in Encrypt 7.3

Same filename and directory in other branches
  1. 7 tests/encrypt_test.module
  2. 7.2 tests/encrypt_test.module

Declares a bogus encryption method and key provider for testing purposes.

File

tests/encrypt_test.module
View source
<?php

/**
 * @file
 * Declares a bogus encryption method and key provider for testing purposes.
 */

/**
 * Implements hook_ctools_plugin_directory().
 */
function encrypt_test_ctools_plugin_directory($module, $plugin) {
  if ($module == 'encrypt') {
    return 'plugins/' . $plugin;
  }
}