This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/mail-refactor' of https://github.com/Maks3w/zf2 …
…into feature/mail-improvements
- Loading branch information
55 parents
9af4d23
+
fb18be8
+
2f56d24
+
256686b
+
3cc679d
+
da18011
+
93ac388
+
57ef4a3
+
2f2851a
+
2ec1dbc
+
9a48955
+
b6b50b9
+
a16c105
+
a634561
+
779d017
+
e998d74
+
e0c0b66
+
677bd85
+
bd0abb6
+
7e23a9b
+
76e9a65
+
9666e65
+
0fb7a6e
+
b476244
+
a566cb1
+
84a7972
+
f6501d5
+
74b0454
+
ea99bf1
+
e2703e7
+
90db7ae
+
b2f5380
+
d6ee2dd
+
2dae9df
+
15a2e1f
+
00d7ef1
+
88e29ab
+
04f5596
+
d4b9187
+
83cb40e
+
e80536c
+
8344c40
+
314ef07
+
f8fe680
+
7d99158
+
5a453b7
+
16b512c
+
e13bb78
+
f8c8e84
+
0e833f2
+
463bd0b
+
e23f919
+
c0f3fe1
+
fbdafd9
+
7cf67f0
commit 6149722
Showing
20 changed files
with
360 additions
and
397 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_Mail | ||
*/ | ||
|
||
namespace Zend\Mail\Header; | ||
|
||
use Zend\Loader\PluginClassLoader; | ||
|
||
/** | ||
* Plugin Class Loader implementation for HTTP headers | ||
* | ||
* @category Zend | ||
* @package Zend_Mail | ||
* @subpackage Header | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
class HeaderLoader extends PluginClassLoader | ||
{ | ||
/** | ||
* @var array Pre-aliased Header plugins | ||
*/ | ||
protected $plugins = array( | ||
'bcc' => 'Zend\Mail\Header\Bcc', | ||
'cc' => 'Zend\Mail\Header\Cc', | ||
'contenttype' => 'Zend\Mail\Header\ContentType', | ||
'content_type' => 'Zend\Mail\Header\ContentType', | ||
'content-type' => 'Zend\Mail\Header\ContentType', | ||
'date' => 'Zend\Mail\Header\Date', | ||
'from' => 'Zend\Mail\Header\From', | ||
'mimeversion' => 'Zend\Mail\Header\MimeVersion', | ||
'mime_version' => 'Zend\Mail\Header\MimeVersion', | ||
'mime-version' => 'Zend\Mail\Header\MimeVersion', | ||
'received' => 'Zend\Mail\Header\Received', | ||
'replyto' => 'Zend\Mail\Header\ReplyTo', | ||
'reply_to' => 'Zend\Mail\Header\ReplyTo', | ||
'reply-to' => 'Zend\Mail\Header\ReplyTo', | ||
'sender' => 'Zend\Mail\Header\Sender', | ||
'subject' => 'Zend\Mail\Header\Subject', | ||
'to' => 'Zend\Mail\Header\To', | ||
); | ||
} |
Oops, something went wrong.