You are here

function modules_weight_permission in Modules weight 7

Implements hook_permission().

File

./modules_weight.module, line 39
Modules weight functionality implementation.

Code

function modules_weight_permission() {
  return array(
    'administer modules weight' => array(
      'title' => t('Administer Modules Weight'),
      'description' => t('Allow access to configure the module settings.'),
    ),
  );
}