You are here

function user_stats_views_api in User Stats 6

Same name and namespace in other branches
  1. 7 user_stats.module \user_stats_views_api()

Implementation of hook_views_api().

Other Views hooks in user_stats.views.inc.

File

./user_stats.module, line 530
User Stats provides commonly requested user statistics for themers. These are:

Code

function user_stats_views_api() {
  return array(
    'api' => '2.0',
    'path' => drupal_get_path('module', 'user_stats') . '/views',
  );
}