You are here

function me_views_api in me aliases 6

Same name and namespace in other branches
  1. 8 me.module \me_views_api()
  2. 6.2 me.module \me_views_api()
  3. 7 me.module \me_views_api()

Implementation of Views' hook_views_api().

See http://drupal.org/project/views for module and hook information.

File

./me.module, line 500
Provides 'me' aliases to allow users to enter 'me' in common paths instead of their user id.

Code

function me_views_api() {
  return array(
    'api' => views_api_version(),
    'path' => drupal_get_path('module', 'me') . '/includes',
  );
}