7921 Posts in 1359 Topics by 933 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » Display Recent Images on Homepage
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 998 Views |
-
Display Recent Images on Homepage

1 June 2009 at 12:57pm
Hello,
I would like to display a list of 5 recent images from my image gallery module on my Homepage. I'm not too sure how to go about it could anyone shed any light on the subject please?
-
Re: Display Recent Images on Homepage

1 June 2009 at 1:31pm
function RecentImages()
{
return DataObject::get("ImageGalleryImage", null, "Created DESC", null, 5);
}
| 998 Views | ||
|
Page:
1
|
Go to Top |

