10377 Posts in 2193 Topics by 1709 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 340 Views |
-
Event Calendar Adding Venue to Date & Time

20 June 2011 at 7:31pm
Hi
I have been following the tutorial on http://doc.silverstripe.org/old/recipes:extending_the_event_calendar and have been having problems trying to add the location when I am extending CalendarDateTime.
I have copied the code from the tutorial exactly and everything works fine up until I get to the following part of the tutorial and when i rebuild the database there is no location on the Date and Time tab.
<?php
class WorkshopDateTime extends CalendarDateTime
{
static $db = array (
'Location' => 'Varchar(50)'
);static $has_one = array (
'Workshop' => 'Workshop'
);
}
static $has_many = array (
'Dates' => 'WorkshopDateTime'
);
?>Any help would be much appreciated
Thanks
| 340 Views | ||
|
Page:
1
|
Go to Top |

