mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
ENHANCEMENT #5072 RSSFeed_Entry::rssField() now respects custom getters on the data class
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@100400 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
7937f5d7cc
commit
2332128460
@ -276,8 +276,7 @@ class RSSFeed_Entry extends ViewableData {
|
||||
* @return string Returns the author of the entry.
|
||||
*/
|
||||
function Author() {
|
||||
if($this->authorField)
|
||||
return $this->failover->obj($this->authorField);
|
||||
if($this->authorField) return $this->failover->obj($this->authorField);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -287,7 +286,10 @@ class RSSFeed_Entry extends ViewableData {
|
||||
function rssField($fieldName, $defaultClass = 'Varchar') {
|
||||
if($fieldName) {
|
||||
if($this->failover->castingHelperPair($fieldName)) {
|
||||
return $this->failover->obj($fieldName);
|
||||
$value = $this->failover->$fieldName;
|
||||
$obj = $this->failover->obj($fieldName);
|
||||
$obj->setValue($value);
|
||||
return $obj;
|
||||
} else {
|
||||
$obj = new $defaultClass($fieldName);
|
||||
$obj->setValue($this->failover->XML_val($fieldName));
|
||||
|
@ -59,13 +59,13 @@ class RSSFeedTest_ItemA extends ViewableData {
|
||||
'AltContent' => 'Text',
|
||||
);
|
||||
|
||||
function Title() {
|
||||
function getTitle() {
|
||||
return "ItemA";
|
||||
}
|
||||
function Content() {
|
||||
function getContent() {
|
||||
return "ItemA Content";
|
||||
}
|
||||
function AltContent() {
|
||||
function getAltContent() {
|
||||
return "ItemA AltContent";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user