2020-11-24 04:23:05 -05:00
|
|
|
(function ($) {
|
|
|
|
"use strict";
|
|
|
|
var options = {
|
|
|
|
events_source: 'event.php',
|
|
|
|
view: 'month',
|
|
|
|
tmpl_path: 'tmpls/',
|
|
|
|
tmpl_cache: false,
|
|
|
|
day: '2018-02-28',
|
|
|
|
onAfterEventsLoad: function (events) {
|
|
|
|
if (!events) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var list = $('#eventlist');
|
|
|
|
list.html('');
|
|
|
|
|
|
|
|
$.each(events, function (key, val) {
|
|
|
|
$(document.createElement('li'))
|
|
|
|
.html('<a href="' + val.url + '">' + val.title + '</a>')
|
|
|
|
.appendTo(list);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onAfterViewLoad: function (view) {
|
|
|
|
$('.page-header h3').text(this.getTitle());
|
|
|
|
$('.btn-group button').removeClass('active');
|
|
|
|
$('button[data-calendar-view="' + view + '"]').addClass('active');
|
|
|
|
},
|
|
|
|
classes: {
|
|
|
|
months: {
|
|
|
|
general: 'label'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
var calendar = $('#showEventCalendar').calendar(options);
|
|
|
|
$('.btn-group button[data-calendar-nav]').each(function () {
|
|
|
|
var $this = $(this);
|
|
|
|
$this.click(function () {
|
|
|
|
calendar.navigate($this.data('calendar-nav'));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$('.btn-group button[data-calendar-view]').each(function () {
|
|
|
|
var $this = $(this);
|
|
|
|
$this.click(function () {
|
|
|
|
calendar.view($this.data('calendar-view'));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$('#first_day').change(function () {
|
|
|
|
var value = $(this).val();
|
|
|
|
value = value.length ? parseInt(value) : null;
|
|
|
|
calendar.setOptions({first_day: value});
|
|
|
|
calendar.view();
|
|
|
|
});
|
|
|
|
$('#language').change(function () {
|
|
|
|
calendar.setLanguage($(this).val());
|
|
|
|
calendar.view();
|
|
|
|
});
|
|
|
|
$('#events-in-modal').change(function () {
|
|
|
|
var val = $(this).is(':checked') ? $(this).val() : null;
|
|
|
|
calendar.setOptions({modal: val});
|
|
|
|
});
|
|
|
|
$('#format-12-hours').change(function () {
|
|
|
|
var val = $(this).is(':checked') ? true : false;
|
|
|
|
calendar.setOptions({format12: val});
|
|
|
|
calendar.view();
|
|
|
|
});
|
|
|
|
$('#show_wbn').change(function () {
|
|
|
|
var val = $(this).is(':checked') ? true : false;
|
|
|
|
calendar.setOptions({display_week_numbers: val});
|
|
|
|
calendar.view();
|
|
|
|
});
|
|
|
|
$('#show_wb').change(function () {
|
|
|
|
var val = $(this).is(':checked') ? true : false;
|
|
|
|
calendar.setOptions({weekbox: val});
|
|
|
|
calendar.view();
|
|
|
|
});
|
2018-07-02 05:44:24 -04:00
|
|
|
|
|
|
|
}(jQuery));
|