function currency_help in Currency 7
Same name and namespace in other branches
- 5 currency.module \currency_help()
- 6 currency.module \currency_help()
Implements 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.');
}
}