function currency_theme in Currency 6
Same name and namespace in other branches
- 7.2 currency/currency.module \currency_theme()
- 7 currency.module \currency_theme()
Implementation of hook_theme().
File
- ./
currency.module, line 169 - This module provides currency exchange rates.
Code
function currency_theme($existing, $type, $theme, $path) {
return array(
'currency_result' => array(
'arguments' => array(
'currency_from' => NULL,
'currency_to' => NULL,
'amount' => NULL,
),
),
);
}