public function PoStreamWriter::getURI in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Component/Gettext/PoStreamWriter.php \Drupal\Component\Gettext\PoStreamWriter::getURI()
Implements Drupal\Component\Gettext\PoStreamInterface::getURI().
Throws
Exception If the URI is not set.
Overrides PoStreamInterface::getURI
1 call to PoStreamWriter::getURI()
- PoStreamWriter::open in lib/
Drupal/ Component/ Gettext/ PoStreamWriter.php - Open the stream. Set the URI for the stream earlier with setURI().
File
- lib/
Drupal/ Component/ Gettext/ PoStreamWriter.php, line 148 - Contains \Drupal\Component\Gettext\PoStreamWriter.
Class
- PoStreamWriter
- Defines a Gettext PO stream writer.
Namespace
Drupal\Component\GettextCode
public function getURI() {
if (empty($this->_uri)) {
throw new Exception('No URI set.');
}
return $this->_uri;
}