function me_views_api in me aliases 6
Same name and namespace in other branches
- 8 me.module \me_views_api()
- 6.2 me.module \me_views_api()
- 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',
);
}