You are here

function draggableviews_perm in DraggableViews 6.3

Same name and namespace in other branches
  1. 6 draggableviews.module \draggableviews_perm()
  2. 6.2 draggableviews.module \draggableviews_perm()

Implementing hook_perm

File

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

Code

function draggableviews_perm() {
  return array(
    'Allow Reordering',
  );
}