You are here

commerce_vbo_views.features.inc in Commerce VBO Views 7

File

commerce_vbo_views.features.inc
View source
<?php

/**
 * @file
 * commerce_vbo_views.features.inc
 */

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

Functions