You are here

function schemaorg_person_ctools_plugin_api in Schema.org 7

Implements hook_ctools_plugin_api().

File

example/schemaorg_person/schemaorg_person.features.inc, line 10
schemaorg_person.features.inc

Code

function schemaorg_person_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => "1",
    );
  }
}