You are here

function draggableviews_plugin_style_draggabletable::render in DraggableViews 6.2

Same name and namespace in other branches
  1. 6.3 views/draggableviews_plugin_style_draggabletable.inc \draggableviews_plugin_style_draggabletable::render()
  2. 6 draggableviews_plugin_style_draggabletable.inc \draggableviews_plugin_style_draggabletable::render()
  3. 7 views/draggableviews_plugin_style_draggabletable.inc \draggableviews_plugin_style_draggabletable::render()

Render the table style.

File

./draggableviews_plugin_style_draggabletable.inc, line 386

Class

draggableviews_plugin_style_draggabletable
Style plugin to render each item as a row in a draggable table; Inherits all from views_plugin_table.

Code

function render() {

  // call form handler to wrap around a form.
  // -> this makes it possible to submit order changes.
  return drupal_get_form('draggableviews_view_draggabletable_form', &$this);

  /*
      $sets = $this->render_grouping($this->view->result, $this->options['grouping']);

      $output = '';
      foreach ($sets as $title => $records) {
        $output .= theme($this->theme_functions(), $this->view, $this->options, $records, $title);
      }
      return $output;*/
}