o365-2.0.3/modules/o365_outlook_calendar/o365_outlook_calendar.install
modules/o365_outlook_calendar/o365_outlook_calendar.install
<?php
/**
* @file
* Update and install hooks for the o365_outlook_calendar module.
*/
use Drupal\Core\Datetime\Entity\DateFormat;
/**
* Create our 2 custom time formats.
*/
function o365_outlook_calendar_update_9001(&$sandbox) {
$dateFormat = DateFormat::create([
'id' => 'o365_outlook_calendar_day',
'label' => 'Microsoft 365 - Outlook calendar day',
'locked' => FALSE,
'pattern' => 'j.m.Y',
]);
$dateFormat->save();
$dateFormat = DateFormat::create([
'id' => 'o365_outlook_calendar_time',
'label' => 'Microsoft 365 - Outlook calendar time',
'locked' => FALSE,
'pattern' => 'H:i',
]);
$dateFormat->save();
}
