You are here

function hook_uuid_node_features_export_alter in UUID Features Integration 7

Allows to modify features metadata for a node.

Parameters

array $data: The array of the features export data

object $node: The node to export.

4 functions implement hook_uuid_node_features_export_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

book_uuid_node_features_export_alter in includes/modules/book.inc
Implements hook_uuid_entity_features_export_alter().
filefield_uuid_node_features_export_alter in includes/modules/filefield.inc
Implements hook_uuid_node_features_export_alter().
nodereference_uuid_node_features_export_alter in includes/modules/nodereference.inc
Implements hook_uuid_node_features_export_render().
taxonomy_uuid_node_features_export_alter in includes/modules/taxonomy.inc
Implements hook_uuid_node_features_export_render_alter().
1 invocation of hook_uuid_node_features_export_alter()
uuid_node_features_export in includes/uuid_node.features.inc
Implements hook_features_export().

File

./uuid_features.api.php, line 79
Hooks provided by the UUID Features module.

Code

function hook_uuid_node_features_export_alter(&$data, $node, $module) {

  // Access / modify the pipe.
  $pipe =& $export['__drupal_alter_by_ref']['pipe'];
}