GitList
Repositories
Help
Report an Issue
vroom360
Code
Commits
Branches
Tags
Search
Tree:
e36c40f
Branches
Tags
master
vroom360
ezcMail
Mail
src
parser
parts
multipart_mixed_parser.php
initial commit
Dev Ghai
commited
e36c40f
at 2013-09-26 06:24:15
multipart_mixed_parser.php
Blame
History
Raw
<?php /** * File containing the ezcMailMultipartMixedParser class * * @package Mail * @version 1.7.1 * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ /** * Parses multipart/mixed mail parts. * * @package Mail * @version 1.7.1 * @access private */ class ezcMailMultipartMixedParser extends ezcMailMultipartParser { /** * Holds the ezcMailMultipartMixed part corresponding to the data parsed with this parser. * * @var ezcMailMultipartMixed */ private $part = null; /** * Constructs a new ezcMailMultipartMixedParser. * * @param ezcMailHeadersHolder $headers */ public function __construct( ezcMailHeadersHolder $headers ) { parent::__construct( $headers ); $this->part = new ezcMailMultipartMixed(); } /** * Adds the part $part to the list of multipart messages. * * This method is called automatically by ezcMailMultipartParser * each time a part is parsed. * * @param ezcMailPart $part */ public function partDone( ezcMailPart $part ) { $this->part->appendPart( $part ); } /** * Returns the parts parsed for this multipart. * * @return ezcMailMultipartMixed */ public function finishMultipart() { $size = 0; foreach ( $this->part->getParts() as $part ) { $size += $part->size; } $this->part->size = $size; return $this->part; } } ?>