You are here

microdata.inc in UUID Features Integration 7

uuid features hooks on behalf of the microdata module. @link https://www.drupal.org/project/microdata

File

includes/modules/microdata.inc
View source
<?php

/**
 * @file
 * uuid features hooks on behalf of the microdata module.
 * @link https://www.drupal.org/project/microdata
 */

/**
 * Implements hook_uuid_entity_features_export_render_alter().
 */
function microdata_uuid_entity_features_export_render_alter($entity_type, &$export, &$entity, $module) {

  // Remove microdata property. It's recreated based on the available data and
  // the entity configuration.
  unset($export->microdata);
}