You are here

function commerce_reorder_views_api in Commerce Reorder 7

Same name and namespace in other branches
  1. 7.2 commerce_reorder.module \commerce_reorder_views_api()

Implements hook_views_api().

File

./commerce_reorder.module, line 43
Allows users to create a new order from their order history.

Code

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