get_settings(); $ml_settings = $this->get_ml_settings(); // The module is disabled if(!isset($settings['local_time_module_status']) || !$settings['local_time_module_status']) return; // Get the visitor Timezone $timezone = $this->get_timezone_by_ip(); // Timezone is not detected! if(!$timezone) return; // Date Formats $date_format1 = (isset($ml_settings['single_date_format1']) and trim($ml_settings['single_date_format1'])) ? $ml_settings['single_date_format1'] : 'M d Y'; $time_format = get_option('time_format', 'H:i'); $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : ''; $occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : ''; $gmt_offset_seconds = $this->get_gmt_offset_seconds((trim($occurrence) ? $occurrence : $event->date['start']['date']), $event); $start_time_components = $this->get_time_components($event, 'start'); $end_time_components = $this->get_time_components($event, 'end'); $gmt_start_time = strtotime((trim($occurrence) ? $occurrence : $start_time_components['date']).' '.sprintf("%02d", $start_time_components['hour']).':'.sprintf("%02d", $start_time_components['minutes']).' '.$start_time_components['ampm']) - $gmt_offset_seconds; $gmt_end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $end_time_components['date']).' '.sprintf("%02d", $end_time_components['hour']).':'.sprintf("%02d", $end_time_components['minutes']).' '.$end_time_components['ampm']) - $gmt_offset_seconds; $user_timezone = new DateTimeZone($timezone); $gmt_timezone = new DateTimeZone('GMT'); $gmt_datetime = new DateTime(date('Y-m-d H:i:s', $gmt_start_time), $gmt_timezone); $offset = $user_timezone->getOffset($gmt_datetime); $user_start_time = $gmt_start_time + $offset; $user_end_time = $gmt_end_time + $offset; $allday = isset($event->data->meta['mec_allday']) ? $event->data->meta['mec_allday'] : 0; $hide_time = isset($event->data->meta['mec_hide_time']) ? $event->data->meta['mec_hide_time'] : 0; $hide_end_time = $this->hide_end_time_status($event->ID); ?>
display('clock') : ''); ?>