public PoStreamWriter::getURI()
Implements Drupal\Component\Gettext\PoStreamInterface::getURI().
Throws
Exception If the URI is not set.
Overrides PoStreamInterface::getURI
File
- core/lib/Drupal/Component/Gettext/PoStreamWriter.php, line 143
Class
- PoStreamWriter
- Defines a Gettext PO stream writer.
Namespace
Drupal\Component\Gettext
Code
1 2 3 4 5 6 | public function getURI() { if ( empty ( $this ->_uri)) { throw new Exception( 'No URI set.' ); } return $this ->_uri; } |
Please login to continue.