advance_importer
Good news .
Works with D10.
Content Editors or Developers can easily migrate content from other site.
Unlike other modules, this can process more than 1,000 items. This leverage the Drupal core api of batch process with backend optimization.
Importing and Exporting Contents for different types of Fields using CSV,JSON and XML format.
FEATURES:
1.Add, Edit Delete Node & Taxonomy Terms
2. Import Image
3. Import Files
4. Import Entity Reference
5. Support Multiple Values (separated with | )
6. Support Translation import.
7. Huge items can import with no memory leakage.
Structure of header can be optional which is machine_name or machine_name|Field Name
Add Operation :
add nid or tid header with empty value
Update Operation :
add nid or tid header with id value
Delete Operation :
add delete header with value of 1
Sample File
CSV Format
nid,title|langcode:langcode|Title;field_contentx|Contents;field_file|Files;field_taxonomy|Tags;field_block|Blocks
;en;Sample;Lenis Sudo|Nunc|Qui Si;sites/default/files/advance_importer/test_21.csv;wr;block test
12;en,Sample2;Duis Refoveo;sites/default/files/advance_importer/test_20.csv;wr;block test
JSON Format
[{
"title":"TEST Title",
"field_content|Contents":"Content Title",
"langcode|langcode":"en",
"field_file|Files":"sites/default/files/advance_importer/test_1.pdf|sites/default/files/advance_importer/test_2.pdf",
"field_taxonomy|Taxonomy Terms":"Term Name",
"field_block|Block":"Block Title",
}]
XML Format
<NODE>
<ITEM>
<FIELD machine_name="nid" name="nid" value="1"/>
<FIELD machine_name="langcode" name="langcode" value="en"/>
<FIELD machine_name="title" name="title" value="HOMEPAGE"/>
<FIELD machine_name="body" name="Body" value="<p>tetst</p> "/>
<FIELD machine_name="comment" name="Comments" value=""/>
<FIELD machine_name="field_image" name="Image" value=""/>
<FIELD machine_name="field_media" name="Media" value=""/>
<FIELD machine_name="field_tags" name="Tags" value="home"/>
</ITEM>
<ITEM>
<FIELD machine_name="nid" name="nid" value="2"/>
<FIELD machine_name="langcode" name="langcode" value="en"/>
<FIELD machine_name="title" name="title" value="lorem ipsum"/>
<FIELD machine_name="body" name="Body" value="lorem ipsum"/>
<FIELD machine_name="comment" name="Comments" value=""/>
<FIELD machine_name="field_image" name="Image" value=""/>
<FIELD machine_name="field_media" name="Media" value="1"/>
<FIELD machine_name="field_tags" name="Tags" value="Easy|Medium|Default"/>
</ITEM>
</NODE>