10382 Posts in 2196 Topics by 1711 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 419 Views |
-
Event Calendar - displaying extra variables?

19 February 2011 at 1:46am Last edited: 19 February 2011 1:52am
Hello All,
I've extended the event calendar module with two fields:
class CalendarEvent extends Page
{
static $db = array (
'Recursion' => 'Boolean',
'CustomRecursionType' => 'Int',
'DailyInterval' => 'Int',
'WeeklyInterval' => 'Int',
'MonthlyInterval' => 'Int',
'MonthlyRecursionType1' => 'Int',
'MonthlyRecursionType2' => 'Int',
'MonthlyIndex' => 'Int',
'MonthlyDayOfWeek' => 'Int',
'Uitslag' => 'Text',
'SoortWedstrijd' => 'Text'
);
....So 'Uitslag' => 'Text',
'SoortWedstrijd' => 'Text'are new fields.
Now i want to display the upcomming events on my homepage:
class Homepage_Controller extends Page_Controller {
public function Events() {
$today = date("Y-m-d");
return DataObject::get_one("Calendar")->Events(null, $today, null, false, 5, null);
}in the template i use:
<% control Events %>
<li>
<h4>$EventTitle</h4>
<span>$_Dates</span>
<span>$SoortWedstrijd</span>
<span>$Content</span>
</li>
<% end_control %>But $Content & $SoortWedstrijd aren't showing up on my homepage. EventTitle & Dates do show up.
How do i fix this?
Thx!
-
Re: Event Calendar - displaying extra variables?

20 February 2011 at 2:41am
And ofcourse, that worked, thanks Cheese
<span>$Event.Content</span>
| 419 Views | ||
|
Page:
1
|
Go to Top |
