You are here

function payment_method_uri in Payment 7

Implements callback_entity_info_uri().

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

File

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

Code

function payment_method_uri(PaymentMethod $payment_method) {
  return array(
    'path' => 'admin/config/services/payment/method/' . $payment_method->pmid,
  );
}