You are here

public function PoStreamWriter::open in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/Gettext/PoStreamWriter.php \Drupal\Component\Gettext\PoStreamWriter::open()

Open the stream. Set the URI for the stream earlier with setURI().

Overrides PoStreamInterface::open

File

core/lib/Drupal/Component/Gettext/PoStreamWriter.php, line 81

Class

PoStreamWriter
Defines a Gettext PO stream writer.

Namespace

Drupal\Component\Gettext

Code

public function open() {

  // Open in write mode. Will overwrite the stream if it already exists.
  $this->fd = fopen($this
    ->getURI(), 'w');

  // Write the header at the start.
  $this
    ->writeHeader();
}