function PoDatabaseWriter::setReport

Same name in other branches
  1. 9 core/modules/locale/src/PoDatabaseWriter.php \Drupal\locale\PoDatabaseWriter::setReport()
  2. 8.9.x core/modules/locale/src/PoDatabaseWriter.php \Drupal\locale\PoDatabaseWriter::setReport()
  3. 10 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\locale

Code

public function setReport($report = []) {
    $report += [
        'additions' => 0,
        'updates' => 0,
        'deletes' => 0,
        'skips' => 0,
        'strings' => [],
    ];
    $this->report = $report;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.