私は公式文書のオプションを知っています。Drupal 7でFullcalendarで24時間の日付形式を取得する方法
timeFormat
およびaxisFormat
以外のすべてのオプションは正常に機能しますが、timeFormat
は24時間形式が必要な場合は常にam/pmとして表示されます。
/**
* @file
* Processes the FullCalendar options and passes them to the integration.
*/
(function ($) {
Drupal.fullcalendar.plugins.fullcalendar = {
options: function (fullcalendar) {
var settings = Drupal.settings.fullcalendar[fullcalendar.dom_id];
var options = {
dragOpacity: 0.5, /* This option IS working*/
timeFormat: { '': 'H:mm' }, /* This is NOT working */
axisFormat: { '': 'H:mm' },
columnFormat: {
month: 'ddd', // Mon
week: 'ddd d/M', // Mon 9/7
day: 'dddd d/M' // Monday 9/7
},
...
Iは、24時間形式をHH
で示されdocumentation for timeFormat
によればFullcalendarライブラリを埋め込むのDrupal 7、モジュール(バージョン1.5.1)