interface PoStreamInterface in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Component/Gettext/PoStreamInterface.php \Drupal\Component\Gettext\PoStreamInterface
Common functions for file/stream based PO readers/writers.
Hierarchy
- interface \Drupal\Component\Gettext\PoStreamInterface
Expanded class hierarchy of PoStreamInterface
All classes that implement PoStreamInterface
See also
File
- lib/
Drupal/ Component/ Gettext/ PoStreamInterface.php, line 16 - Contains \Drupal\Component\Gettext\PoStreamInterface.
Namespace
Drupal\Component\GettextView source
interface PoStreamInterface {
/**
* Open the stream. Set the URI for the stream earlier with setURI().
*/
public function open();
/**
* Close the stream.
*/
public function close();
/**
* Gets the URI of the PO stream that is being read or written.
*
* @return
* URI string for this stream.
*/
public function getURI();
/**
* Set the URI of the PO stream that is going to be read or written.
*
* @param $uri
* URI string to set for this stream.
*/
public function setURI($uri);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PoStreamInterface:: |
public | function | Close the stream. | 2 |
PoStreamInterface:: |
public | function | Gets the URI of the PO stream that is being read or written. | 2 |
PoStreamInterface:: |
public | function | Open the stream. Set the URI for the stream earlier with setURI(). | 2 |
PoStreamInterface:: |
public | function | Set the URI of the PO stream that is going to be read or written. | 2 |