You are here

function draggableviews_views_api in DraggableViews 6.3

Same name and namespace in other branches
  1. 6 draggableviews.module \draggableviews_views_api()
  2. 6.2 draggableviews.module \draggableviews_views_api()
  3. 7.2 draggableviews.module \draggableviews_views_api()
  4. 7 draggableviews.module \draggableviews_views_api()

Implementing hook_views_api

File

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

Code

function draggableviews_views_api() {
  return array(
    'api' => 2.0,
    'path' => drupal_get_path('module', 'draggableviews') . '/views',
  );
}