You are here

function payment_ubercart_permission in Payment for Ubercart 7.2

Same name and namespace in other branches
  1. 7 payment_ubercart.module \payment_ubercart_permission()

Implements hook_permission().

File

./payment_ubercart.module, line 25
Hook implementations and shared functions.

Code

function payment_ubercart_permission() {
  $permissions = array(
    'payment_ubercart.administer' => array(
      'title' => t('Administer Payment for Ubercart'),
    ),
  );
  return $permissions;
}