You are here

function uc_quote_permission in Ubercart 7.3

Implements hook_permission().

File

shipping/uc_quote/uc_quote.module, line 15
The controller module for fulfillment modules that process physical goods.

Code

function uc_quote_permission() {
  return array(
    'configure quotes' => array(
      'title' => t('Configure quotes'),
    ),
  );
}