You are here

function currency_api_help in Currency 6

Same name and namespace in other branches
  1. 5 currency_api/currency_api.module \currency_api_help()
  2. 7 currency_api/currency_api.module \currency_api_help()

Implementation of hook_help().

File

currency_api/currency_api.module, line 16
This module provides an API for currency conversion.

Code

function currency_api_help($path, $arg) {
  switch ($path) {
    case 'admin/help#currency_api':
      return t('This module provides an API for currency conversion.');
  }
}