You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A configuration entry will indicate a limit to the number of lines to validate. This is in response to requirements in the current version of allowing a certain number of rows to validate before data import can proceed to the next stage.
Design
In this mockup shows a select field that will indicate degree of validation. Possible values include:
Full Validation - All lines/rows in the data file will be validated.
Partial - First Half - Half the total lines.
Partial - First 100 - First 100 lines
Minimum 50 - Validate only 50 lines.
Plugin Value validator will account for this value during validation stage.
public function validate() {
// Fetch validation degree configuration.
$validation_limit = x;
// Begin column and row validation.
while(($line = fgets($handle) !== FALSE) {
if ($line_no == 0) {
// Header row.
}
else {
// Data rows.
// EXIT/STOP validation if line no reaches the configured validation limit.
}
$line_no++;
}
}
The text was updated successfully, but these errors were encountered:
Branch
g0.51-Validation-Limit
Groups
Group 0 - General
Describe
A configuration entry will indicate a limit to the number of lines to validate. This is in response to requirements in the current version of allowing a certain number of rows to validate before data import can proceed to the next stage.
Design
In this mockup shows a select field that will indicate degree of validation. Possible values include:
Plugin Value validator will account for this value during validation stage.
The text was updated successfully, but these errors were encountered: