You are here

draggableviews.views.inc in DraggableViews 6.2

Same filename and directory in other branches
  1. 6 draggableviews.views.inc

Derives the view style plugin

File

draggableviews.views.inc
View source
<?php

/**
 * @file
 * Derives the view style plugin
 */
function draggableviews_views_plugins() {
  return array(
    'module' => 'draggableviews',
    // This just tells our themes are elsewhere.
    'style' => array(
      'draggabletable' => array(
        'title' => t('Draggable Table'),
        'help' => t('Displays rows in a table and makes them draggable.'),
        'handler' => 'draggableviews_plugin_style_draggabletable',
        'theme' => 'draggableviews_view_draggabletable',
        'theme file' => 'draggableviews_theme.inc',
        'uses row plugin' => TRUE,
        'uses options' => TRUE,
        'uses fields' => TRUE,
        'type' => 'normal',
        'parent' => 'table',
      ),
    ),
  );
}

Functions

Namesort descending Description
draggableviews_views_plugins @file Derives the view style plugin