%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11584/cwd/html/ppaobm/vendor/bower-asset/fullcalendar/demos/ |
Upload File : |
<!DOCTYPE html> <html> <head> <meta charset='utf-8' /> <link href='../dist/core/main.css' rel='stylesheet' /> <link href='../dist/daygrid/main.css' rel='stylesheet' /> <link href='../dist/timegrid/main.css' rel='stylesheet' /> <link href='../dist/list/main.css' rel='stylesheet' /> <script src='../dist/core/main.js'></script> <script src='../dist/interaction/main.js'></script> <script src='../dist/daygrid/main.js'></script> <script src='../dist/timegrid/main.js'></script> <script src='../dist/list/main.js'></script> <script> document.addEventListener('DOMContentLoaded', function() { var calendarEl = document.getElementById('calendar'); var calendar = new FullCalendar.Calendar(calendarEl, { plugins: [ 'interaction', 'dayGrid', 'timeGrid', 'list' ], header: { left: 'prev,next today', center: 'title', right: 'dayGridMonth,timeGridWeek,timeGridDay,listWeek' }, defaultDate: '2019-04-12', editable: true, navLinks: true, // can click day/week names to navigate views eventLimit: true, // allow "more" link when too many events events: { url: 'php/get-events.php', failure: function() { document.getElementById('script-warning').style.display = 'block' } }, loading: function(bool) { document.getElementById('loading').style.display = bool ? 'block' : 'none'; } }); calendar.render(); }); </script> <style> body { margin: 0; padding: 0; font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size: 14px; } #script-warning { display: none; background: #eee; border-bottom: 1px solid #ddd; padding: 0 10px; line-height: 40px; text-align: center; font-weight: bold; font-size: 12px; color: red; } #loading { display: none; position: absolute; top: 10px; right: 10px; } #calendar { max-width: 900px; margin: 40px auto; padding: 0 10px; } </style> </head> <body> <div id='script-warning'> <code>php/get-events.php</code> must be running. </div> <div id='loading'>loading...</div> <div id='calendar'></div> </body> </html>