You are here

function paypal_donations__uri in PayPal Donations 7

Provides the path for the donation entity().

1 string reference to 'paypal_donations__uri'
paypal_donations_entity_info in includes/paypal_donations.entity.inc
Implements hook_entity_info().

File

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

Code

function paypal_donations__uri($donation) {
  return array(
    'path' => 'paypal_donations/' . $donation->id,
  );
}