This project is not covered by Drupal’s security advisory policy.

The XML writer export module allows users to export a content type and its fields to XML and apply XSL transformations. This is useful if you need to generate some PDF documents out of your content. This module provides 3 basic functionalities:

Export of content type into a basic and comprehensible XML format
Apply XSLT transformations to the generated export

The XML writer export module supports exporting nodes and users as well as node fields of type "number_integer", "text" and "date". It also supports export of references to other node, either using the "node_reference" field type or the "viewfield" field type if those modules are enabled.

Here is an example of the exported XML.

<nodes>
    <node>
        <id>1</id>
        <title>article 1</title>
    </node>
    <node>
        <id>2</id>
        <title>article 2</title>
    </node>
    <node>
        <id>3</id>
        <title>article 3</title>
    </node>
    <node>
        <id>4</id>
        <title>article 4</title>
    </node>
    <node>
        <id>5</id>
        <title>article 5</title>
    </node>
    <node>
        <id>6</id>
        <title>article 6</title>
    </node>
</nodes>

Project information

Releases