You are here

function paypal_donate_node_info in Paypal Donation 6

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

Sets the information about the content-type so Drupal can display it on the create content page.

@since 1.0

Return value

array with content-type information.

File

./paypal_donate.module, line 17

Code

function paypal_donate_node_info() {
  return array(
    'paypal_page' => array(
      'name' => t('Paypal donate page'),
      'module' => 'paypal_donate',
      'description' => t('Allow your users to leave you a donation'),
    ),
  );
}