You are here

function user_stats_views_api in User Stats 7

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

Implements hook_views_api().

Other Views hooks in user_stats.views.inc.

File

./user_stats.module, line 528
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',
  );
}