You are here

function paypal_donate_load in Paypal Donation 6

This is a hook used by node / Content-type modules. It is called to allow the module a chance to load extra information that it stores about a node, or possibly replace already loaded information.

@since 1.0

Parameters

$node object the node to load from the database.:

Return value

void

File

./paypal_donate.module, line 133

Code

function paypal_donate_load($node) {
  return db_fetch_object(db_query("SELECT * FROM {paypal_donate} WHERE nid='%s'", $node->nid));
}