Fluid

DataGrab includes basic support Fluid Field support.

As of DataGrab 4.0, basic Fluid field support is available. Any field within a Fluid field that supports basic string values, such as Text, Textarea, Wysiwyg, Toggle, File, URL etc should all work. The import process does not currently support complex fieldtypes such as Relationship or Grid fields.

A future version of DataGrab may include support for complex fieldtypes, however, it is likely to require a large refactor, and your pre-configured imports may need to be edited and re-saved because the configuration settings structure may need to be changed.

Example file

<root>
    <entry>
        <title>Fluid Test Entry 1</title>
        <fluid_field>
            <summary>
                This is some summary text for entry #1
            </summary>
            <body>
                This is some of the longer body text for entry #1
            </body>
            <body>
                This is some of the longer body text for entry #1 body field 2
            </body>
            <file_basic>
                https://some-site.com/path/to/image.jpg
            </file_basic>
            <summary>
                This is more summary text, the 4th node, for entry #1
            </summary>
        </fluid_field>
    </entry>
    <entry>
        <title>Fluid Test Entry 2</title>
        <fluid_field>
            <summary>
                This is some summary text for entry #2
            </summary>
            <summary>
                This is some summary text for entry #2 summary field 2
            </summary>
            <body>
                This is some of the longer body text for entry #2
            </body>
        </fluid_field>
    </entry>
</root>

Last updated