You are here

function payment_uri in Payment 7

Implements callback_entity_info_uri().

1 string reference to 'payment_uri'
payment_entity_info in ./payment.module
Implements hook_entity_info().

File

./payment.module, line 1136
Hook implementations and shared functions.

Code

function payment_uri(Payment $payment) {
  return array(
    'path' => 'payment/' . $payment->pid,
  );
}