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