You are here

function currency_help in Currency 6

Same name and namespace in other branches
  1. 5 currency.module \currency_help()
  2. 7 currency.module \currency_help()

Implementation of hook_help().

File

./currency.module, line 13
This module provides currency exchange rates.

Code

function currency_help($path, $arg) {
  switch ($path) {
    case 'admin/help#currency':
      return t('This module provides currency exchange rates.');
  }
}