public function PoDatabaseWriter::setReport in Drupal 8
Same name and namespace in other branches
- 9 core/modules/locale/src/PoDatabaseWriter.php \Drupal\locale\PoDatabaseWriter::setReport()
Set the report array of write operations.
Parameters
array $report: Associative array with result information.
1 call to PoDatabaseWriter::setReport()
- PoDatabaseWriter::__construct in core/
modules/ locale/ src/ PoDatabaseWriter.php - Constructor, initialize reporting array.
File
- core/
modules/ locale/ src/ PoDatabaseWriter.php, line 92
Class
- PoDatabaseWriter
- Gettext PO writer working with the locale module database.
Namespace
Drupal\localeCode
public function setReport($report = []) {
$report += [
'additions' => 0,
'updates' => 0,
'deletes' => 0,
'skips' => 0,
'strings' => [],
];
$this->report = $report;
}