php - Fullcalendar settings from mysql -


is possible set following setting of fullcalendar.js mysql, or file?

$(document).ready(function() {     var date = new date();     var d = date.getdate();     var m = date.getmonth();     var y = date.getfullyear();      var calendar = $('#calendar').fullcalendar({         editable: true,         alldayslot: true,         alldaytext: 'celĂ˝ den',         firsthour: 8,         slotminutes: 30,         defaulteventminutes: 120,         defaultview: 'resourceday',         axisformat: 'hh:mm',         timeformat: {             agenda: 'h:mm{ - h:mm}'         },         dragopacity: {             agenda: .5         },         mintime: 8,         maxtime: 18,          header: {             left: 'prev,next today',             center: 'title',             right: 'month,resourceday'         },         .. 

i need user can edit through interface make.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -