Filter: gravityview/import/processor/args
Filters the processor arguments before the import processor is initialized.
Use this filter to modify timeout, memory limits, batch ID, or other processor settings before the import process begins.
Parameters
| Name | Type | Description |
|---|---|---|
| $args | array | Processor arguments. |
| ↳ $batch_id | string|null | The batch ID to process. Default null. |
| ↳ $time | int | Start time as Unix timestamp. Default current time. |
| ↳ $timeout | int | Maximum seconds to process before suspending. Default from Server::get_timeout(). |
| ↳ $memory | int | Maximum memory in bytes. Default from Server::get_memory_limit(). |
| ↳ $count | int | Maximum rows to process per run. Default 0 (unlimited). |
| ↳ $countout | int | Internal counter for processed rows. Default 0. |
| ↳ $breakpoint | string|null | Status to break on during run. Default null. |
Since
Source
Defined in src/Processor.php at line 76