diff --git a/defaultcontent.features.inc b/defaultcontent.features.inc index 46518b7..fdaebb6 100644 --- a/defaultcontent.features.inc +++ b/defaultcontent.features.inc @@ -34,6 +34,9 @@ function content_features_export_render($module_name, $data, $export = NULL) { asort($data); foreach ($data as $name) { if ($node = defaultcontent_get_node($name)) { + // let other modules edit the export + drupal_alter('content_features_export_render', $module_name, $node); + $code .= "\n"; $code .= " \$content['$name'] = " . defaultcontent_export_node($node) . ";\n"; }