@@ -6,8 +6,8 @@ |
||
6 | 6 | */ |
7 | 7 | class SS_Datetimezone extends SS_Datetime { |
8 | 8 | /** |
9 | - * Returns the date in the raw SQL-format specific to a given timezone passed from the Member class, e.g. “2006-01-18 16:32:04” |
|
10 | - */ |
|
9 | + * Returns the date in the raw SQL-format specific to a given timezone passed from the Member class, e.g. “2006-01-18 16:32:04” |
|
10 | + */ |
|
11 | 11 | public function Nice() { |
12 | 12 | //instantiate new DateTime object based off received timestamp in the default timezone |
13 | 13 | $timestamp = new DateTime($this->value, new DateTimeZone(date_default_timezone_get())); |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * Returns the date in the raw SQL-format specific to a given timezone passed from the Member class, e.g. “2006-01-18 16:32:04” |
10 | 10 | */ |
11 | 11 | public function Format($format) { |
12 | - if($this->value){ |
|
12 | + if ($this->value) { |
|
13 | 13 | $date = new DateTime($this->value); |
14 | 14 | //if the current user has set a timezone that is not the default then use that |
15 | 15 | $member = Member::currentUser(); |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * Returns the date in the raw SQL-format specific to a given timezone passed from the Member class, e.g. “2006-01-18 16:32:04” |
10 | 10 | */ |
11 | 11 | public function Format($format) { |
12 | - if($this->value){ |
|
12 | + if($this->value) { |
|
13 | 13 | $date = new DateTime($this->value); |
14 | 14 | //if the current user has set a timezone that is not the default then use that |
15 | 15 | $member = Member::currentUser(); |
@@ -14,7 +14,7 @@ |
||
14 | 14 | return array_combine($timezones, $timezones); |
15 | 15 | } |
16 | 16 | |
17 | - public function updateCMSFields(FieldList $fields) { |
|
17 | + public function updateCMSFields(FieldList $fields) { |
|
18 | 18 | $fields->removeFieldFromTab('Root', 'Timezone'); |
19 | 19 | $field = DropdownField::create( |
20 | 20 | 'Timezone', |