mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
81 lines
1.9 KiB
PHP
81 lines
1.9 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Zend Framework (http://framework.zend.com/)
|
||
|
*
|
||
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
||
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
*/
|
||
|
|
||
|
namespace Zend\Mail\Header;
|
||
|
|
||
|
class Subject implements UnstructuredInterface
|
||
|
{
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $subject = '';
|
||
|
|
||
|
/**
|
||
|
* Header encoding
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $encoding = 'ASCII';
|
||
|
|
||
|
public static function fromString($headerLine)
|
||
|
{
|
||
|
$decodedLine = iconv_mime_decode($headerLine, ICONV_MIME_DECODE_CONTINUE_ON_ERROR, 'UTF-8');
|
||
|
list($name, $value) = GenericHeader::splitHeaderLine($decodedLine);
|
||
|
|
||
|
// check to ensure proper header type for this factory
|
||
|
if (strtolower($name) !== 'subject') {
|
||
|
throw new Exception\InvalidArgumentException('Invalid header line for Subject string');
|
||
|
}
|
||
|
|
||
|
$header = new static();
|
||
|
if ($decodedLine != $headerLine) {
|
||
|
$header->setEncoding('UTF-8');
|
||
|
}
|
||
|
$header->setSubject($value);
|
||
|
|
||
|
return $header;
|
||
|
}
|
||
|
|
||
|
public function getFieldName()
|
||
|
{
|
||
|
return 'Subject';
|
||
|
}
|
||
|
|
||
|
public function getFieldValue($format = HeaderInterface::FORMAT_RAW)
|
||
|
{
|
||
|
if (HeaderInterface::FORMAT_ENCODED === $format) {
|
||
|
return HeaderWrap::wrap($this->subject, $this);
|
||
|
}
|
||
|
|
||
|
return $this->subject;
|
||
|
}
|
||
|
|
||
|
public function setEncoding($encoding)
|
||
|
{
|
||
|
$this->encoding = $encoding;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getEncoding()
|
||
|
{
|
||
|
return $this->encoding;
|
||
|
}
|
||
|
|
||
|
public function setSubject($subject)
|
||
|
{
|
||
|
$this->subject = (string) $subject;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function toString()
|
||
|
{
|
||
|
return 'Subject: ' . $this->getFieldValue(HeaderInterface::FORMAT_ENCODED);
|
||
|
}
|
||
|
}
|