public function FeedsElement::getValue in Feeds 6
Same name and namespace in other branches
- 7.2 plugins/FeedsParser.inc \FeedsElement::getValue()
- 7 plugins/FeedsParser.inc \FeedsElement::getValue()
@todo Make value public and deprecate use of getValue().
Return value
Standard value of this FeedsElement.
3 calls to FeedsElement::getValue()
- FeedsElement::__toString in plugins/
FeedsParser.inc - FeedsEnclosure::getContent in plugins/
FeedsParser.inc - FeedsEnclosure::getFile in plugins/
FeedsParser.inc - @todo Get file extension from mime_type. @todo This is not concurrency safe.
3 methods override FeedsElement::getValue()
- FeedsDateTimeElement::getValue in plugins/
FeedsParser.inc - Override FeedsElement::getValue().
- FeedsSimplePieEnclosure::getValue in plugins/
FeedsSimplePieParser.inc - Override parent::getValue().
- FeedsTermElement::getValue in plugins/
FeedsParser.inc - Use $name as $value.
File
- plugins/
FeedsParser.inc, line 128
Class
- FeedsElement
- Defines an element of a parsed result. Such an element can be a simple type, a complex type (derived from FeedsElement) or an array of either.
Code
public function getValue() {
return $this->value;
}