You are here

function weight_permission in Weight 7.2

Same name and namespace in other branches
  1. 7.3 weight.module \weight_permission()
  2. 7 weight.module \weight_permission()

Implements hook_permission().

File

./weight.module, line 6

Code

function weight_permission() {
  return array(
    'assign node weight' => array(
      'title' => t('Assign node weights'),
      'description' => t('Allow modification of node weights.'),
    ),
  );
}