public function PoHeader::setFromString in Localization update 7.2
Populate internal values from a string.
Parameters
string $header: Full header string with key-value pairs.
File
- includes/
gettext/ PoHeader.php, line 141 - Definition of Drupal\Component\Gettext\PoHeader.
Class
- PoHeader
- Gettext PO header handler.
Code
public function setFromString($header) {
// Get an array of all header values for processing.
$values = $this
->parseHeader($header);
// There is only one value relevant for our header implementation when
// reading, and that is the plural formula.
if (!empty($values['Plural-Forms'])) {
$this->_pluralForms = $values['Plural-Forms'];
}
}