Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-conte.../plugins/ninja-fo.../includes/Handlers
File: SubmissionAggregateCsvExportAdapter.php
*
[500] Fix | Delete
* @param string $key
[501] Fix | Delete
* @param string||array $value
[502] Fix | Delete
* @return void
[503] Fix | Delete
*/
[504] Fix | Delete
protected function setColumnValue(string $key, $value): void
[505] Fix | Delete
{
[506] Fix | Delete
[507] Fix | Delete
if($key === "repeater" && is_array($value)){
[508] Fix | Delete
$this->columnValues['repeater'][$value[0]] = $value[1];
[509] Fix | Delete
} else {
[510] Fix | Delete
$this->columnValues[$key] = $value;
[511] Fix | Delete
}
[512] Fix | Delete
[513] Fix | Delete
}
[514] Fix | Delete
[515] Fix | Delete
protected function filterRawValue( string $key, $rawValue, Field $nfField)
[516] Fix | Delete
{
[517] Fix | Delete
$formId = $this->submissionAggregate->getMasterFormId();
[518] Fix | Delete
[519] Fix | Delete
$fieldId=$this->fieldIds[$key];
[520] Fix | Delete
$fieldType = $this->fieldTypes[$key];
[521] Fix | Delete
[522] Fix | Delete
$filtered = apply_filters('nf_subs_export_pre_value', $rawValue, $fieldId);
[523] Fix | Delete
$filtered = apply_filters('ninja_forms_subs_export_pre_value', $filtered, $fieldId, $formId);
[524] Fix | Delete
$filtered = apply_filters('ninja_forms_subs_export_field_value_' . $fieldType, $filtered, $nfField);
[525] Fix | Delete
[526] Fix | Delete
return $filtered;
[527] Fix | Delete
}
[528] Fix | Delete
/**
[529] Fix | Delete
* Set indexed array of field types to be omitted in output
[530] Fix | Delete
*
[531] Fix | Delete
* @param array $hiddenFieldTypes Indexed array of field types to be omitted in output
[532] Fix | Delete
*
[533] Fix | Delete
* @return SubmissionAggregateCsvExportAdapter
[534] Fix | Delete
*/
[535] Fix | Delete
public function setHiddenFieldTypes(array $hiddenFieldTypes): SubmissionAggregateCsvExportAdapter
[536] Fix | Delete
{
[537] Fix | Delete
$this->hiddenFieldTypes = $hiddenFieldTypes;
[538] Fix | Delete
[539] Fix | Delete
return $this;
[540] Fix | Delete
}
[541] Fix | Delete
}
[542] Fix | Delete
[543] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function