Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle /
calendar /
amd /
build /
[ HOME SHELL ]
Name
Size
Permission
Action
calendar.min.js
4.76
KB
-rwxrwxrwx
calendar.min.js.map
13.79
KB
-rwxrwxrwx
calendar_filter.min.js
1.85
KB
-rwxrwxrwx
calendar_filter.min.js.map
5.39
KB
-rwxrwxrwx
calendar_mini.min.js
1.96
KB
-rwxrwxrwx
calendar_mini.min.js.map
5.6
KB
-rwxrwxrwx
calendar_threemonth.min.js
2.83
KB
-rwxrwxrwx
calendar_threemonth.min.js.map
8.11
KB
-rwxrwxrwx
calendar_view.min.js
1.9
KB
-rwxrwxrwx
calendar_view.min.js.map
5.4
KB
-rwxrwxrwx
crud.min.js
4.29
KB
-rwxrwxrwx
crud.min.js.map
12.86
KB
-rwxrwxrwx
drag_drop_data_store.min.js
1.68
KB
-rwxrwxrwx
drag_drop_data_store.min.js.ma...
6.8
KB
-rwxrwxrwx
event_form.min.js
1.32
KB
-rwxrwxrwx
event_form.min.js.map
4.11
KB
-rwxrwxrwx
events.min.js
870
B
-rwxrwxrwx
events.min.js.map
2.07
KB
-rwxrwxrwx
modal_delete.min.js
1.98
KB
-rwxrwxrwx
modal_delete.min.js.map
5.22
KB
-rwxrwxrwx
modal_event_form.min.js
5.38
KB
-rwxrwxrwx
modal_event_form.min.js.map
19.64
KB
-rwxrwxrwx
month_navigation_drag_drop.min...
2.51
KB
-rwxrwxrwx
month_navigation_drag_drop.min...
9.17
KB
-rwxrwxrwx
month_view_drag_drop.min.js
4.91
KB
-rwxrwxrwx
month_view_drag_drop.min.js.ma...
17.36
KB
-rwxrwxrwx
repository.min.js
2.58
KB
-rwxrwxrwx
repository.min.js.map
7
KB
-rwxrwxrwx
selectors.min.js
1.51
KB
-rwxrwxrwx
selectors.min.js.map
3.68
KB
-rwxrwxrwx
summary_modal.min.js
3.14
KB
-rwxrwxrwx
summary_modal.min.js.map
9.73
KB
-rwxrwxrwx
view_manager.min.js
11.91
KB
-rwxrwxrwx
view_manager.min.js.map
22.7
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : repository.min.js.map
{"version":3,"file":"repository.min.js","sources":["../src/repository.js"],"sourcesContent":["// This file is part of Moodle - http://moodle.org/\n//\n// Moodle is free software: you can redistribute it and/or modify\n// it under the terms of the GNU General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// Moodle is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n// GNU General Public License for more details.\n//\n// You should have received a copy of the GNU General Public License\n// along with Moodle. If not, see <http://www.gnu.org/licenses/>.\n\n/**\n * A javascript module to handle calendar ajax actions.\n *\n * @module core_calendar/repository\n * @class repository\n * @package core_calendar\n * @copyright 2017 Simey Lameze <lameze@moodle.com>\n * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later\n */\nimport Ajax from 'core/ajax';\n\n/**\n * Delete a calendar event.\n *\n * @method deleteEvent\n * @param {number} eventId The event id.\n * @param {boolean} deleteSeries Whether to delete all events in the series\n * @return {promise} Resolved with requested calendar event\n */\nexport const deleteEvent = (eventId, deleteSeries = false) => {\n const request = {\n methodname: 'core_calendar_delete_calendar_events',\n args: {\n events: [{\n eventid: eventId,\n repeat: deleteSeries,\n }]\n }\n };\n\n return Ajax.call([request])[0];\n};\n\n/**\n * Get a calendar event by id.\n *\n * @method getEventById\n * @param {number} eventId The event id.\n * @return {promise} Resolved with requested calendar event\n */\nexport const getEventById = (eventId) => {\n\n const request = {\n methodname: 'core_calendar_get_calendar_event_by_id',\n args: {\n eventid: eventId\n }\n };\n\n return Ajax.call([request])[0];\n};\n\n/**\n * Submit the form data for the event form.\n *\n * @method submitCreateUpdateForm\n * @param {string} formData The URL encoded values from the form\n * @return {promise} Resolved with the new or edited event\n */\nexport const submitCreateUpdateForm = (formData) => {\n const request = {\n methodname: 'core_calendar_submit_create_update_form',\n args: {\n formdata: formData\n }\n };\n\n return Ajax.call([request])[0];\n};\n\n/**\n * Get calendar data for the month view.\n *\n * @method getCalendarMonthData\n * @param {number} year Year\n * @param {number} month Month\n * @param {number} courseId The course id.\n * @param {number} categoryId The category id.\n * @param {boolean} includeNavigation Whether to include navigation.\n * @param {boolean} mini Whether the month is in mini view.\n * @param {number} day Day (optional)\n * @return {promise} Resolved with the month view data.\n */\nexport const getCalendarMonthData = (year, month, courseId, categoryId, includeNavigation, mini, day = 1) => {\n const request = {\n methodname: 'core_calendar_get_calendar_monthly_view',\n args: {\n year,\n month,\n courseid: courseId,\n categoryid: categoryId,\n includenavigation: includeNavigation,\n mini,\n day,\n }\n };\n\n return Ajax.call([request])[0];\n};\n\n/**\n * Get calendar data for the day view.\n *\n * @method getCalendarDayData\n * @param {number} year Year\n * @param {number} month Month\n * @param {number} day Day\n * @param {number} courseId The course id.\n * @param {number} categoryId The id of the category whose events are shown\n * @return {promise} Resolved with the day view data.\n */\nexport const getCalendarDayData = (year, month, day, courseId, categoryId) => {\n const request = {\n methodname: 'core_calendar_get_calendar_day_view',\n args: {\n year,\n month,\n day,\n courseid: courseId,\n categoryid: categoryId,\n }\n };\n\n return Ajax.call([request])[0];\n};\n\n/**\n * Change the start day for the given event id. The day timestamp\n * only has to be any time during the target day because only the\n * date information is extracted, the time of the day is ignored.\n *\n * @param {int} eventId The id of the event to update\n * @param {int} dayTimestamp A timestamp for some time during the target day\n * @return {promise}\n */\nexport const updateEventStartDay = (eventId, dayTimestamp) => {\n const request = {\n methodname: 'core_calendar_update_event_start_day',\n args: {\n eventid: eventId,\n daytimestamp: dayTimestamp\n }\n };\n\n return Ajax.call([request])[0];\n};\n\n/**\n * Get calendar upcoming data.\n *\n * @method getCalendarUpcomingData\n * @param {number} courseId The course id.\n * @param {number} categoryId The category id.\n * @return {promise} Resolved with the month view data.\n */\nexport const getCalendarUpcomingData = (courseId, categoryId) => {\n const request = {\n methodname: 'core_calendar_get_calendar_upcoming_view',\n args: {\n courseid: courseId,\n categoryid: categoryId,\n }\n };\n\n return Ajax.call([request])[0];\n};\n\n/**\n * Get the groups by course id.\n *\n * @param {Number} courseId The course id to fetch the groups from.\n * @return {promise} Resolved with the course groups.\n */\nexport const getCourseGroupsData = (courseId) => {\n const request = {\n methodname: 'core_group_get_course_groups',\n args: {\n courseid: courseId\n }\n };\n\n return Ajax.call([request])[0];\n};\n"],"names":["eventId","deleteSeries","request","methodname","args","events","eventid","repeat","Ajax","call","formData","formdata","year","month","courseId","categoryId","includeNavigation","mini","day","courseid","categoryid","includenavigation","dayTimestamp","daytimestamp"],"mappings":";;;;;;;;;6WAkC2B,SAACA,aAASC,qEAC3BC,QAAU,CACZC,WAAY,uCACZC,KAAM,CACFC,OAAQ,CAAC,CACLC,QAASN,QACTO,OAAQN,wBAKbO,cAAKC,KAAK,CAACP,UAAU,0BAUJ,SAACF,aAEnBE,QAAU,CACZC,WAAY,yCACZC,KAAM,CACFE,QAASN,iBAIVQ,cAAKC,KAAK,CAACP,UAAU,oCAUM,SAACQ,cAC7BR,QAAU,CACZC,WAAY,0CACZC,KAAM,CACFO,SAAUD,kBAIXF,cAAKC,KAAK,CAACP,UAAU,kCAgBI,SAACU,KAAMC,MAAOC,SAAUC,WAAYC,kBAAmBC,UAAMC,2DAAM,EAC7FhB,QAAU,CACZC,WAAY,0CACZC,KAAM,CACFQ,KAAAA,KACAC,MAAAA,MACAM,SAAUL,SACVM,WAAYL,WACZM,kBAAmBL,kBACnBC,KAAAA,KACAC,IAAAA,aAIDV,cAAKC,KAAK,CAACP,UAAU,gCAcE,SAACU,KAAMC,MAAOK,IAAKJ,SAAUC,gBACrDb,QAAU,CACZC,WAAY,sCACZC,KAAM,CACFQ,KAAAA,KACAC,MAAAA,MACAK,IAAAA,IACAC,SAAUL,SACVM,WAAYL,oBAIbP,cAAKC,KAAK,CAACP,UAAU,iCAYG,SAACF,QAASsB,kBACnCpB,QAAU,CACZC,WAAY,uCACZC,KAAM,CACFE,QAASN,QACTuB,aAAcD,sBAIfd,cAAKC,KAAK,CAACP,UAAU,qCAWO,SAACY,SAAUC,gBACxCb,QAAU,CACZC,WAAY,2CACZC,KAAM,CACFe,SAAUL,SACVM,WAAYL,oBAIbP,cAAKC,KAAK,CAACP,UAAU,iCASG,SAACY,cAC1BZ,QAAU,CACZC,WAAY,+BACZC,KAAM,CACFe,SAAUL,kBAIXN,cAAKC,KAAK,CAACP,UAAU"}
Close