public function PoStreamReader::readItem in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Component/Gettext/PoStreamReader.php \Drupal\Component\Gettext\PoStreamReader::readItem()
Reads and returns a PoItem (source/translation pair).
Return value
\Drupal\Component\Gettext\PoItem Wrapper for item data instance.
Overrides PoReaderInterface::readItem
1 call to PoStreamReader::readItem()
- PoStreamReader::readHeader in lib/
Drupal/ Component/ Gettext/ PoStreamReader.php - Read the header from the PO stream.
File
- lib/
Drupal/ Component/ Gettext/ PoStreamReader.php, line 185 - Contains \Drupal\Component\Gettext\PoStreamReader.
Class
- PoStreamReader
- Implements Gettext PO stream reader.
Namespace
Drupal\Component\GettextCode
public function readItem() {
// Clear out the last item.
$this->_last_item = NULL;
// Read until finished with the stream or a complete item was identified.
while (!$this->_finished && is_null($this->_last_item)) {
$this
->readLine();
}
return $this->_last_item;
}