You are here

function encrypt_test_help in Encrypt 7.2

Implements hook_help().

File

tests/encrypt_test.module, line 11
Declares a bogus encryption method and key provider for testing purposes.

Code

function encrypt_test_help($path, $arg) {
  switch ($path) {
    case 'admin/help#encrypt_test':
      $output = '<p>' . t('This module declares a bogus encryption method and key provider for testing purposes.') . '</p>';
      return $output;
  }
}