You are here

views_pivot.module in Pivot Tables for Views 7

File

views_pivot.module
View source
<?php

/**
 * Implements hook_views_api().
 */
function views_pivot_views_api() {
  return array(
    'api' => 3,
  );
}

/**
 * Implements hook_theme().
 */
function views_pivot_theme() {
  return array(
    'views_ui_style_plugin_pivot' => array(
      'render element' => 'form',
      'file' => 'views_pivot.theme.inc',
    ),
  );
}

Functions

Namesort descending Description
views_pivot_theme Implements hook_theme().
views_pivot_views_api Implements hook_views_api().