- Issue created by @afagioli
Automatically closed - issue fixed for 2 weeks with no activity.
Variable $fc_user_settings
is mostly set by embedded code. IE:
$fc_user_settings = [
'batCalendar' => [
[
'background' => 'hide-book',
'businessHours' => $business_hours,
'defaultView' => 'timelineDay',
'eventType' => $event_type,
'eventGranularity' => $event_granularity,
'editable' => FALSE,
'headerLeft' => 'today',
'headerCenter' => 'title',
'headerRight' => 'prev, next',
'selectable' => FALSE,
'unitType' => $unit_type,
'unitIds' => implode(',', $units_ids),
'views' => 'timelineDay',
'viewsTimelineDaySlotDuration' => '01:00',
],
],
];
while from the name one can understand values come from user preference.
Rename variable from $fc_user_settings
to $fc_settings
Applies to more related modules as BEE
Needs work
11.1
Code
Automatically closed - issue fixed for 2 weeks with no activity.