constant NODE_IMPORT_STATUS_PENDING in Node import 6
Status pending.
- In {node_import_tasks} : the task is not yet finished and there are more pending rows to import.
- In {node_import_status} : the import of the row has started, but has not yet finished. This means the row may have to be reimported. Note that we don't really know what part of it didn't finish :-(
Related topics
2 uses of NODE_IMPORT_STATUS_PENDING
- NodeImportTestCase::assertRowStatusPENDING in tests/
NodeImportTestCase.php - Check to see if the row status is NODE_IMPORT_STATUS_PENDING.
- node_import_do_task in ./
node_import.inc - Import a number of rows from the specified task. Should only be called from within hook_cron() or from a JS callback as this function may take a long time.
File
- ./
node_import.inc, line 41 - Public API of the Node import module.
Code
define('NODE_IMPORT_STATUS_PENDING', 0);