| 1 | <?php |
||
| 14 | class Configuration |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var string the charset used for returning content strings, e.g. |
||
| 18 | * $part->getContent or $part->getResourceContentHandle |
||
| 19 | */ |
||
| 20 | private $contentCharset; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Sets the charset of returned strings in content returned from calls to |
||
| 24 | * MimePart (e.g. getContent or getContentResourceHandle) |
||
| 25 | * |
||
| 26 | * @param string $contentCharset |
||
| 27 | */ |
||
| 28 | public function setContentCharset($contentCharset) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Returns the charset for returned strings in content returned from calls |
||
| 35 | * to MimePart (e.g. getContent or getContentResourceHandle) |
||
| 36 | * |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | public function getContentCharset() |
||
| 43 | } |
||
| 44 |