You are here

function paypal_donate_theme in Paypal Donation 6

Same name and namespace in other branches
  1. 7 paypal_donate.module \paypal_donate_theme()

Define all themes used in this module. These theme items can be used in the module here using the theme function.

@since 1.0

Return value

array with theme information

File

./paypal_donate.module, line 57

Code

function paypal_donate_theme() {
  $items = array();
  $items['paypal_form'] = array(
    'template' => 'paypal_form',
    'arguments' => array(
      'node' => NULL,
    ),
  );
  return $items;
}