PoMetadataInterface.php in Localization update 7.2
Definition of Drupal\Component\Gettext\PoMetadataInterface.
File
includes/gettext/PoMetadataInterface.phpView source
<?php
/**
* @file
* Definition of Drupal\Component\Gettext\PoMetadataInterface.
*/
/**
* Methods required for both reader and writer implementations.
*
* @see Drupal\Component\Gettext\PoReaderInterface
* @see Drupal\Component\Gettext\PoWriterInterface
*/
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 PoHeader $header
* Header object representing metadata in a PO header.
*/
public function setHeader(PoHeader $header);
/**
* Get header metadata.
*
* @return PoHeader $header
* Header instance representing metadata in a PO header.
*/
public function getHeader();
}
Interfaces
Name | Description |
---|---|
PoMetadataInterface | Methods required for both reader and writer implementations. |