public function FeedsEnclosure::getMIMEType in Feeds 7.2
Same name and namespace in other branches
- 6 plugins/FeedsParser.inc \FeedsEnclosure::getMIMEType()
- 7 plugins/FeedsParser.inc \FeedsEnclosure::getMIMEType()
Return value
MIME type of return value of getValue().
1 call to FeedsEnclosure::getMIMEType()
- FeedsEnclosure::getFile in plugins/
FeedsParser.inc - Get a Drupal file object of the enclosed resource, download if necessary.
1 method overrides FeedsEnclosure::getMIMEType()
- FeedsSimplePieEnclosure::getMIMEType in plugins/
FeedsSimplePieParser.inc - Override parent::getMIMEType().
File
- plugins/
FeedsParser.inc, line 343 - Contains FeedsParser and related classes.
Class
- FeedsEnclosure
- Enclosure element, can be part of the result array.
Code
public function getMIMEType() {
return $this->mime_type;
}