| 1 |
This module enables importing of nodes of any type into Drupal. It accepts as input a comma separated values (CSV) file.
|
| 2 |
|
| 3 |
Your CSV file must contain field names in its first row. The following fields are required:
|
| 4 |
- title
|
| 5 |
- uid or name [both are ignored if current user does not have 'administer nodes' permission. if user does have this permission, name is used if available, otherwise uid, otherwise 'anonymous user' is assumed]
|
| 6 |
- type
|
| 7 |
|
| 8 |
Your CSV file should use quotes around strings that contain a comma. Parsing is handled by the fgetcsv function. See http://www.php.net/fgetcsv for details.
|
| 9 |
|
| 10 |
Field names should match columns in your database. Field values should match those usually entered into your DB.
|
| 11 |
|
| 12 |
This module adds a 'node import' link to your Navigation menu which is viewable by users who have the 'node import' permission.
|
| 13 |
|