You are here

chart_views.module in Google Chart Tools: Image Charts 7

Same filename and directory in other branches
  1. 6 chart_views/chart_views.module

Provides primary Drupal hook implementations.

@author Jimmy Berry ("boombatower", http://drupal.org/user/214218) @package Chart

File

chart_views/chart_views.module
View source
<?php

/**
 * @file
 * Provides primary Drupal hook implementations.
 *
 * @author Jimmy Berry ("boombatower", http://drupal.org/user/214218)
 * @package Chart
 */

/**
 * Implements hook_views_api().
 */
function chart_views_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'chart_views') . '/views',
  );
}

Functions

Namesort descending Description
chart_views_views_api Implements hook_views_api().