You are here

function schemaorg_event_views_api in Schema.org 7

Implements hook_views_api().

File

example/schemaorg_event/schemaorg_event.features.inc, line 20
schemaorg_event.features.inc

Code

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