You are here

views_data_export_json.module in Views data export - JSON support 7

Same filename and directory in other branches
  1. 7.2 views_data_export_json.module

File

views_data_export_json.module
View source
<?php

/**
 * Implementation of hook_views_api().
 */
function views_data_export_json_views_api() {
  return array(
    'api' => 2,
  );
}

/**
 * Implementation of hook_theme().
 */
function views_data_export_json_theme() {

  // Make sure that views picks up the preprocess functions.
  module_load_include('inc', 'views_data_export_json', 'theme/views_data_export_json.theme');
  return array();
}

Functions

Namesort descending Description
views_data_export_json_theme Implementation of hook_theme().
views_data_export_json_views_api Implementation of hook_views_api().