You are here

schema_person.module in Schema.org Metatag 7

Metatag integration for the schema_person module.

File

schema_person/schema_person.module
View source
<?php

/**
 * @file
 * Metatag integration for the schema_person module.
 */

/**
 * Implements hook_ctools_plugin_api().
 */
function schema_person_ctools_plugin_api($owner, $api) {
  if ($owner == 'metatag' && $api == 'metatag') {
    return array(
      'version' => 1,
    );
  }
}

Functions