You are here

function draggableviews_permission in DraggableViews 7

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

Implements hook_permission().

File

./draggableviews.module, line 607
Draggableviews module provides a style plugin for views. With this plugin rows become draggable and can be organized in complex structures.

Code

function draggableviews_permission() {
  return array(
    'Allow Reordering' => array(
      'title' => t('Allow Reordering'),
      'description' => t('Allow the user to reorder nodes.'),
    ),
  );
}