function encrypt_help in Encrypt 6
Same name and namespace in other branches
- 7.3 encrypt.module \encrypt_help()
- 7 encrypt.module \encrypt_help()
- 7.2 encrypt.module \encrypt_help()
Implementation of hook_help().
File
- ./
encrypt.module, line 55 - Main Encrypt Drupal File
Code
function encrypt_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#encrypt':
$output = '<p>' . t('The encrypt module Provides an API for two-way encryption. Drupal has no native way to do two-way encryption. PHP\'s ability to do two-way encryption is a little more involved than most people care to get into. This module provides an easy way to encrypt() and decrypt().') . '</p>';
}
return $output;
}