PoReaderInterface.php in Service Container 7.2
Same filename and directory in other branches
Namespace
Drupal\Component\GettextFile
lib/Drupal/Component/Gettext/PoReaderInterface.phpView source
<?php
/**
* @file
* Contains \Drupal\Component\Gettext\PoReaderInterface.
*/
namespace Drupal\Component\Gettext;
/**
* Shared interface definition for all Gettext PO Readers.
*/
interface PoReaderInterface extends PoMetadataInterface {
/**
* Reads and returns a PoItem (source/translation pair).
*
* @return \Drupal\Component\Gettext\PoItem
* Wrapper for item data instance.
*/
public function readItem();
}
Interfaces
Name | Description |
---|---|
PoReaderInterface | Shared interface definition for all Gettext PO Readers. |