You are here

function paypal_donations_load in PayPal Donations 7

Base entity load.

File

includes/paypal_donations.entity.inc, line 53
Deinfes the PayPal donation item entity

Code

function paypal_donations_load($pid = NULL, $reset = FALSE) {
  $pids = isset($pid) ? array(
    $pid,
  ) : array();
  $postit = paypal_donations_load_multiple($pids, $reset);
  return $postit ? reset($postit) : FALSE;
}