You are here

function currency_api_theme in Currency 6

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

Implementation of hook_theme().

File

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

Code

function currency_api_theme() {
  return array(
    'currency_api_amount' => array(
      'arguments' => array(
        'amount' => NULL,
        'attributes' => NULL,
      ),
    ),
  );
}