762 Posts in 312 Topics by 291 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1269 Views |
-
random content widget

22 January 2009 at 12:33am
hi!
I have a page taht take data from external database about product. This page show product's photo, some row of text adn a 'detail' button (when I ckick on this button I show all product characteristic).
I need a widget to show randomly one of this product every week. (only product name and a link to that product page)
Can I use random content widget?or something else?
thanks! -
Re: random content widget

22 January 2009 at 3:36am
Assuming your product class name is Product and the fields you want are Title and Link...
Page_Controller extends Content_Controller
{
function RandomContent()
{
return DataObject::get_one("Product",null, false, "RAND()");
}
}and on any page
<% control RandomContent %>
$Title $Link
<% end_control %>
| 1269 Views | ||
|
Page:
1
|
Go to Top |

