interface PoMetadataInterface in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Component/Gettext/PoMetadataInterface.php \Drupal\Component\Gettext\PoMetadataInterface
Methods required for both reader and writer implementations.
Hierarchy
- interface \Drupal\Component\Gettext\PoMetadataInterface
Expanded class hierarchy of PoMetadataInterface
All classes that implement PoMetadataInterface
See also
\Drupal\Component\Gettext\PoReaderInterface
\Drupal\Component\Gettext\PoWriterInterface
File
- lib/
Drupal/ Component/ Gettext/ PoMetadataInterface.php, line 16 - Contains \Drupal\Component\Gettext\PoMetadataInterface.
Namespace
Drupal\Component\GettextView source
interface PoMetadataInterface {
/**
* Set language code.
*
* @param string $langcode
* Language code string.
*/
public function setLangcode($langcode);
/**
* Get language code.
*
* @return string
* Language code string.
*/
public function getLangcode();
/**
* Set header metadata.
*
* @param \Drupal\Component\Gettext\PoHeader $header
* Header object representing metadata in a PO header.
*/
public function setHeader(PoHeader $header);
/**
* Get header metadata.
*
* @return \Drupal\Component\Gettext\PoHeader $header
* Header instance representing metadata in a PO header.
*/
public function getHeader();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PoMetadataInterface:: |
public | function | Get header metadata. | 3 |
PoMetadataInterface:: |
public | function | Get language code. | 3 |
PoMetadataInterface:: |
public | function | Set header metadata. | 3 |
PoMetadataInterface:: |
public | function | Set language code. | 3 |