1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
class EventPage extends DatedUpdatePage { |
4
|
|
|
|
5
|
|
|
private static $description = 'Describes an event occurring on a specific date.'; |
|
|
|
|
6
|
|
|
|
7
|
|
|
static $default_parent = 'EventHolder'; |
8
|
|
|
|
9
|
|
|
static $can_be_root = false; |
10
|
|
|
|
11
|
|
|
static $icon = 'cwp/images/icons/sitetree_images/event_page.png'; |
12
|
|
|
|
13
|
|
|
public $pageIcon = 'images/icons/sitetree_images/event_page.png'; |
14
|
|
|
|
15
|
|
|
private static $singular_name = 'Event Page'; |
|
|
|
|
16
|
|
|
|
17
|
|
|
private static $plural_name = 'Event Pages'; |
|
|
|
|
18
|
|
|
|
19
|
|
|
static $db = array( |
20
|
|
|
'StartTime' => 'Time', |
21
|
|
|
'EndTime' => 'Time', |
22
|
|
|
'Location' => 'Text' |
23
|
|
|
); |
24
|
|
|
|
25
|
|
|
public function fieldLabels($includerelations = true) { |
26
|
|
|
$labels = parent::fieldLabels($includerelations); |
27
|
|
|
$labels['StartTime'] = _t('DateUpdatePage.StartTimeFieldLabel', 'Start Time'); |
28
|
|
|
$labels['EndTime'] = _t('DateUpdatePage.EndTimeFieldLabel', 'End Time'); |
29
|
|
|
$labels['Location'] = _t('DateUpdatePage.LocationFieldLabel', 'Location'); |
30
|
|
|
|
31
|
|
|
return $labels; |
32
|
|
|
} |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* Add the default for the Date being the current day. |
36
|
|
|
*/ |
37
|
|
|
public function populateDefaults() { |
38
|
|
View Code Duplication |
if(!isset($this->Date) || $this->Date === null) { |
|
|
|
|
39
|
|
|
$this->Date = SS_Datetime::now()->Format('Y-m-d'); |
|
|
|
|
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
if(!isset($this->StartTime) || $this->StartTime === null) { |
43
|
|
|
$this->StartTime = '09:00:00'; |
|
|
|
|
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
if(!isset($this->EndTime) || $this->EndTime === null) { |
47
|
|
|
$this->EndTime = '17:00:00'; |
|
|
|
|
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
parent::populateDefaults(); |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
public function getCMSFields() { |
54
|
|
|
$this->beforeUpdateCMSFields(function (FieldList $fields) { |
55
|
|
|
$fields->removeByName('Date'); |
56
|
|
|
|
57
|
|
|
$dateTimeFields = array(); |
58
|
|
|
|
59
|
|
|
$dateTimeFields[] = $dateField = DateField::create('Date', 'Date'); |
60
|
|
|
$dateField->setConfig('showcalendar', true); |
61
|
|
|
$dateField->setConfig('dateformat', Member::currentUser()->getDateFormat()); |
62
|
|
|
|
63
|
|
|
$dateTimeFields[] = $startTimeField = TimeField::create('StartTime', ' ' . $this->fieldLabel('StartTime')); |
64
|
|
|
$dateTimeFields[] = $endTimeField = TimeField::create('EndTime', $this->fieldLabel('EndTime')); |
65
|
|
|
// Would like to do this, but the width of the form field doesn't scale based on the time |
66
|
|
|
// format. OS ticket raised: http://open.silverstripe.org/ticket/8260 |
67
|
|
|
//$startTimeField->setConfig('timeformat', Member::currentUser()->getTimeFormat()); |
68
|
|
|
//$endTimeField->setConfig('timeformat', Member::currentUser()->getTimeFormat()); |
69
|
|
|
$startTimeField->setConfig('timeformat', 'h:ma'); |
70
|
|
|
$endTimeField->setConfig('timeformat', 'h:ma'); |
71
|
|
|
|
72
|
|
|
$fields->addfieldToTab('Root.Main', $dateTimeField = new FieldGroup('Date and time', $dateTimeFields), 'Abstract'); |
73
|
|
|
|
74
|
|
|
$fields->addfieldToTab('Root.Main', $locationField = TextareaField::create('Location', $this->fieldLabel('Location')), 'Abstract'); |
75
|
|
|
$locationField->setRows(4); |
76
|
|
|
}); |
77
|
|
|
return parent::getCMSFields(); |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
public function NiceLocation() { |
81
|
|
|
return (nl2br(Convert::raw2xml($this->Location), true)); |
|
|
|
|
82
|
|
|
} |
83
|
|
|
} |
84
|
|
|
|
85
|
|
|
class EventPage_Controller extends Page_Controller { |
|
|
|
|
86
|
|
|
|
87
|
|
|
} |
88
|
|
|
|