You are here

function draggableviews_draggableviews_style_plugin_render in DraggableViews 6.3

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

Implementing hook_draggableviews_style_plugin_render.

Theme the style plugin settings for the native handler.

File

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

Code

function draggableviews_draggableviews_style_plugin_render(&$form) {
  $header = drupal_render($form['draggableviews_native_header']);
  $draggableviews_arguments = drupal_render($form['draggableviews_arguments']);
  return $header . $draggableviews_arguments;
}