You are here

schema_organization.module in Schema.org Metatag 7

Metatag integration for the schema_organization module.

File

schema_organization/schema_organization.module
View source
<?php

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

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