You are here

function draggableviews_permission in DraggableViews 7.2

Same name and namespace in other branches
  1. 7 draggableviews.module \draggableviews_permission()

Implements hook_permission().

File

./draggableviews.module, line 236

Code

function draggableviews_permission() {
  return array(
    'access draggableviews' => array(
      'title' => t('Access draggable views'),
      'description' => t('Give users the right to sort their views'),
    ),
  );
}