You are here

function commerce_wishlist_views_api in Commerce Wishlist 7

Same name and namespace in other branches
  1. 7.3 commerce_wishlist.module \commerce_wishlist_views_api()
  2. 7.2 commerce_wishlist.module \commerce_wishlist_views_api()

Implements hook_views_api().

File

./commerce_wishlist.module, line 43
Provides the wishlist for use in Drupal Commerce.

Code

function commerce_wishlist_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'commerce_wishlist') . '/includes/views',
  );
}