function hook_uuid_entity_features_rebuild_alter in UUID Features Integration 7
Allows to handle specific import tasks for an entity.
Parameters
string $entity_type: The entity type to rebuild.
object $entity: The entity to import.
array $data: The raw data from the export.
string $module: The module to import for.
10 functions implement hook_uuid_entity_features_rebuild_alter()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- commerce_product_reference_uuid_entity_features_rebuild_alter in includes/
modules/ commerce_product_reference.inc - Implements hook_uuid_entity_features_rebuild_alter().
- entityreference_uuid_entity_features_rebuild_alter in includes/
modules/ entityreference.inc - Implements hook_uuid_entity_features_rebuild_alter().
- entity_translation_uuid_entity_features_rebuild_alter in includes/
modules/ entity_translation.inc - Implements hook_uuid_entity_features_rebuild_alter().
- field_collection_uuid_entity_features_rebuild_alter in includes/
modules/ field_collection.inc - Implements hook_uuid_entity_features_rebuild_alter().
- file_entity_revisions_uuid_entity_features_rebuild_alter in includes/
modules/ file_entity_revisions.inc - Implements hook_uuid_entity_features_rebuild_alter().
10 invocations of hook_uuid_entity_features_rebuild_alter()
- file_entity_uuid_entity_features_rebuild_alter in includes/
modules/ file_entity.inc - Implements hook_uuid_entity_features_rebuild_alter().
- uuid_bean_features_rebuild in includes/
uuid_bean.features.inc - Implements hook_features_rebuild().
- uuid_commerce_product_features_rebuild_products in includes/
uuid_commerce_product.features.inc - Runs the product import multiple times to resolve dependencies.
- uuid_field_collection_features_rebuild in includes/
uuid_field_collection.features.inc - Implements hook_features_rebuild().
- uuid_file_entity_features_rebuild_files in includes/
uuid_file_entity.features.inc - Runs the file import multiple times to resolve dependencies.
File
- ./
uuid_features.api.php, line 54 - Hooks provided by the UUID Features module.
Code
function hook_uuid_entity_features_rebuild_alter($entity_type, $entity, $data, $module) {
}