function shurly_views_api in ShURLy 6
Same name and namespace in other branches
- 7 shurly.module \shurly_views_api()
* Implementation of hook_views_api. * Notifies the Views module that we're compatible with a particular API revision.
File
- ./shurly.module, line 127 
- description http://www.youtube.com/watch?v=Qo7qoonzTCE
Code
function shurly_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'shurly') . '/views',
  );
}