public function FeedsElement::getValue in Feeds 7
Same name and namespace in other branches
- 6 plugins/FeedsParser.inc \FeedsElement::getValue()
- 7.2 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 - Get a Drupal file object of the enclosed resource, download if necessary.
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 116
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;
}