You are here

function currency_permission in Currency 7

Same name and namespace in other branches
  1. 7.2 currency/currency.module \currency_permission()

Implements hook_permission().

File

./currency.module, line 78
This module provides currency exchange rates.

Code

function currency_permission() {
  return array(
    'use currency' => array(
      'title' => t('Use currency'),
    ),
  );
}