You are here

function commerce_vbo_views_views_api in Commerce VBO Views 7

Implements hook_views_api().

File

./commerce_vbo_views.features.inc, line 10
commerce_vbo_views.features.inc

Code

function commerce_vbo_views_views_api() {
  list($module, $api) = func_get_args();
  if ($module == "views" && $api == "views_default") {
    return array(
      "version" => "3.0",
    );
  }
}