Lines Matching refs:part
239 foreach ($structure->parts as $part) {
240 if (!isset($part->disposition) && (strstr($part->headers['content-type'], 'text/xml'))) {
241 $this->debug('Have root part of type ' . $part->headers['content-type']);
242 $root = $part->body;
243 $return = parent::parseResponse($part->headers, $part->body);
245 $this->debug('Have an attachment of type ' . $part->headers['content-type']);
246 $info['data'] = $part->body;
247 … $info['filename'] = isset($part->d_parameters['filename']) ? $part->d_parameters['filename'] : '';
248 $info['contenttype'] = $part->headers['content-type'];
249 $info['cid'] = $part->headers['content-id'];
480 foreach ($structure->parts as $part) {
481 if (!isset($part->disposition) && (strstr($part->headers['content-type'], 'text/xml'))) {
482 $this->debug('Have root part of type ' . $part->headers['content-type']);
483 $return = parent::parseRequest($part->headers, $part->body);
485 $this->debug('Have an attachment of type ' . $part->headers['content-type']);
486 $info['data'] = $part->body;
487 … $info['filename'] = isset($part->d_parameters['filename']) ? $part->d_parameters['filename'] : '';
488 $info['contenttype'] = $part->headers['content-type'];
489 $info['cid'] = $part->headers['content-id'];