You are here

function commerce_wishlist_views_api in Commerce Wishlist 7.3

Same name and namespace in other branches
  1. 7 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 364
Provides a wish list for use in Drupal Commerce.

Code

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