5095 Posts in 1518 Topics by 1114 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 714 Views |
-
Showing latest news on homepage

26 November 2010 at 11:30pm
Hi,
I've been implementing this function here successfully on mysite/code/HomePage.php:
...
function LatestNews($num=5) {
$news = DataObject::get_one("ArticleHolder");
return ($news) ? DataObject::get("ArticlePage", "ParentID = $news->ID", "Date DESC", "", $num) : false;
}
...Now, I tried to implement the same function on the HomePage.php, but instead with News from the "EventHolder":
...
function LatestEvents($num=5) {
$news = DataObject::get_one("ArticleHolder");
return ($news) ? DataObject::get("ArticlePage", "ParentID = $news->ID", "Date DESC", "", $num) : false;
}
...I could successfully update the database and everything seems to work, except the homepage is not being rendered anymore at all, the page says: "Sorry, there was a problem with handling your request."
Where's the mistake?
Thanks!
-
Re: Showing latest news on homepage

26 November 2010 at 11:59pm
Is that your actual code? It looks like 'LatestEvents' still uses 'ArticleHolder' and 'ArticlePage'...
-
Re: Showing latest news on homepage

27 November 2010 at 2:10am
Try turning on dev mode to see more errors.
Why dont you create one method in the Page class? That way both Homepage.php and NewsHolder.php can use it.
| 714 Views | ||
|
Page:
1
|
Go to Top |



