function draggableviews_views_api in DraggableViews 7
Same name and namespace in other branches
- 6.3 draggableviews.module \draggableviews_views_api()
- 6 draggableviews.module \draggableviews_views_api()
- 6.2 draggableviews.module \draggableviews_views_api()
- 7.2 draggableviews.module \draggableviews_views_api()
Implements hook_views_api().
File
- ./
draggableviews.module, line 665 - 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',
);
}