public PoDatabaseWriter::setReport($report = array())
Set the report array of write operations.
Parameters
array $report: Associative array with result information.
File
- core/modules/locale/src/PoDatabaseWriter.php, line 92
Class
- PoDatabaseWriter
- Gettext PO writer working with the locale module database.
Namespace
Drupal\locale
Code
public function setReport($report = array()) {
$report += array(
'additions' => 0,
'updates' => 0,
'deletes' => 0,
'skips' => 0,
'strings' => array(),
);
$this->report = $report;
}
Please login to continue.