function paypal_donate_form in Paypal Donation 7
Same name and namespace in other branches
- 6 paypal_donate.module \paypal_donate_form()
This function returns the form that will displayed on the content creation page.
@since 1.0
Parameters
$node object to pass the values to the form.:
$form_state The form state array. Changes made to this variable will have no effect.:
Return value
array form with node settings.
File
- ./
paypal_donate.module, line 153
Code
function paypal_donate_form(&$node, $form_state) {
return node_content_form($node, $form_state);
}