src/PageTypes/DatedUpdatePage.php 1 location
|
@@ 42-44 (lines=3) @@
|
| 39 |
|
{ |
| 40 |
|
parent::populateDefaults(); |
| 41 |
|
|
| 42 |
|
if (!isset($this->Date) || $this->Date === null) { |
| 43 |
|
$this->Date = DBDatetime::now()->Format('y-MM-dd 09:00:00'); |
| 44 |
|
} |
| 45 |
|
} |
| 46 |
|
|
| 47 |
|
public function fieldLabels($includerelations = true) |
src/PageTypes/EventPage.php 1 location
|
@@ 52-54 (lines=3) @@
|
| 49 |
|
*/ |
| 50 |
|
public function populateDefaults() |
| 51 |
|
{ |
| 52 |
|
if (!isset($this->Date) || $this->Date === null) { |
| 53 |
|
$this->Date = DBDatetime::now()->Format('y-MM-dd'); |
| 54 |
|
} |
| 55 |
|
|
| 56 |
|
if (!isset($this->StartTime) || $this->StartTime === null) { |
| 57 |
|
$this->StartTime = '09:00:00'; |