function paypal_donate_node_info in Paypal Donation 7
Same name and namespace in other branches
- 6 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_donate' => array(
'name' => t('Paypal donate page'),
'base' => 'paypal_donate',
'description' => t('Allow your users to leave you a donation'),
),
);
}