public PoStreamWriter::writeItems(PoReaderInterface $reader, $count = -1)
Writes all or the given amount of items.
Parameters
PoReaderInterface $reader: Reader to read PoItems from.
$count: Amount of items to read from $reader to write. If -1, all items are read from $reader.
Overrides PoWriterInterface::writeItems
File
- core/lib/Drupal/Component/Gettext/PoStreamWriter.php, line 130
Class
- PoStreamWriter
- Defines a Gettext PO stream writer.
Namespace
Drupal\Component\Gettext
Code
1 2 3 4 5 6 | public function writeItems(PoReaderInterface $reader , $count = -1) { $forever = $count == -1; while (( $count -- > 0 || $forever ) && ( $item = $reader ->readItem())) { $this ->writeItem( $item ); } } |
Please login to continue.