Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.130.44
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
aja /
public_html /
ead /
calendar /
amd /
build /
[ HOME SHELL ]
Name
Size
Permission
Action
calendar.min.js
4.73
KB
-rw-r--r--
calendar.min.js.map
13.76
KB
-rw-r--r--
calendar_filter.min.js
1.83
KB
-rw-r--r--
calendar_filter.min.js.map
5.36
KB
-rw-r--r--
calendar_mini.min.js
1.93
KB
-rw-r--r--
calendar_mini.min.js.map
5.57
KB
-rw-r--r--
calendar_threemonth.min.js
2.86
KB
-rw-r--r--
calendar_threemonth.min.js.map
8.16
KB
-rw-r--r--
calendar_view.min.js
1.87
KB
-rw-r--r--
calendar_view.min.js.map
5.37
KB
-rw-r--r--
crud.min.js
4.26
KB
-rw-r--r--
crud.min.js.map
12.83
KB
-rw-r--r--
drag_drop_data_store.min.js
1.65
KB
-rw-r--r--
drag_drop_data_store.min.js.ma...
6.77
KB
-rw-r--r--
event_form.min.js
1.29
KB
-rw-r--r--
event_form.min.js.map
4.08
KB
-rw-r--r--
events.min.js
810
B
-rw-r--r--
events.min.js.map
2.01
KB
-rw-r--r--
modal_delete.min.js
1.92
KB
-rw-r--r--
modal_delete.min.js.map
5.17
KB
-rw-r--r--
modal_event_form.min.js
5.33
KB
-rw-r--r--
modal_event_form.min.js.map
19.59
KB
-rw-r--r--
month_navigation_drag_drop.min...
2.44
KB
-rw-r--r--
month_navigation_drag_drop.min...
9.13
KB
-rw-r--r--
month_view_drag_drop.min.js
4.85
KB
-rw-r--r--
month_view_drag_drop.min.js.ma...
17.29
KB
-rw-r--r--
repository.min.js
2.53
KB
-rw-r--r--
repository.min.js.map
6.94
KB
-rw-r--r--
selectors.min.js
1.49
KB
-rw-r--r--
selectors.min.js.map
3.65
KB
-rw-r--r--
summary_modal.min.js
3.11
KB
-rw-r--r--
summary_modal.min.js.map
9.7
KB
-rw-r--r--
view_manager.min.js
11.9
KB
-rw-r--r--
view_manager.min.js.map
22.73
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : event_form.min.js.map
{"version":3,"file":"event_form.min.js","sources":["../src/event_form.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 enhance the event form.\n *\n * @module core_calendar/event_form\n * @copyright 2017 Ryan Wyllie <ryan@moodle.com>\n * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later\n */\ndefine(['jquery', 'core_calendar/repository'], function($, CalendarRepository) {\n\n var SELECTORS = {\n EVENT_GROUP_COURSE_ID: '[name=\"groupcourseid\"]',\n EVENT_GROUP_ID: '[name=\"groupid\"]',\n SELECT_OPTION: 'option'\n };\n\n /**\n * Listen for when the user changes the group course when configuring\n * a group event and filter the options in the group select to only\n * show the groups available within the course the user has selected.\n *\n * @method addCourseGroupSelectListeners\n * @param {object} formElement The root form element\n */\n var addCourseGroupSelectListeners = function(formElement) {\n var courseGroupSelect = formElement.find(SELECTORS.EVENT_GROUP_COURSE_ID);\n\n var loadGroupSelectOptions = function(groups) {\n var groupSelect = formElement.find(SELECTORS.EVENT_GROUP_ID),\n groupSelectOptions = groupSelect.find(SELECTORS.SELECT_OPTION),\n courseGroups = $(groups);\n\n // Let's clear all options first.\n groupSelectOptions.remove();\n groupSelect.prop(\"disabled\", false);\n courseGroups.each(function(id, group) {\n $(groupSelect).append($(\"<option></option>\").attr(\"value\", group.id).text(group.name));\n });\n };\n\n // If the user choose a course in the selector do a WS request to get groups.\n courseGroupSelect.on('change', function() {\n var courseId = formElement.find(SELECTORS.EVENT_GROUP_COURSE_ID).val();\n CalendarRepository.getCourseGroupsData(courseId)\n .then(function(groups) {\n return loadGroupSelectOptions(groups);\n })\n .catch(Notification.exception);\n });\n };\n\n /**\n * Initialise all of the form enhancements.\n *\n * @method init\n * @param {string} formId The value of the form's id attribute\n */\n var init = function(formId) {\n var formElement = $('#' + formId);\n addCourseGroupSelectListeners(formElement);\n };\n\n return {\n init: init,\n };\n});\n"],"names":["define","$","CalendarRepository","SELECTORS","addCourseGroupSelectListeners","formElement","courseGroupSelect","find","on","courseId","val","getCourseGroupsData","then","groups","groupSelect","groupSelectOptions","courseGroups","remove","prop","each","id","group","append","attr","text","name","loadGroupSelectOptions","catch","Notification","exception","init","formId"],"mappings":";;;;;;;AAsBAA,kCAAO,CAAC,SAAU,6BAA6B,SAASC,EAAGC,wBAEnDC,gCACuB,yBADvBA,yBAEgB,mBAFhBA,wBAGe,SAWfC,8BAAgC,SAASC,iBACrCC,kBAAoBD,YAAYE,KAAKJ,iCAgBzCG,kBAAkBE,GAAG,UAAU,eACvBC,SAAWJ,YAAYE,KAAKJ,iCAAiCO,MACjER,mBAAmBS,oBAAoBF,UAClCG,MAAK,SAASC,eAjBM,SAASA,YAC9BC,YAAcT,YAAYE,KAAKJ,0BAC/BY,mBAAqBD,YAAYP,KAAKJ,yBACtCa,aAAef,EAAEY,QAGrBE,mBAAmBE,SACnBH,YAAYI,KAAK,YAAY,GAC7BF,aAAaG,MAAK,SAASC,GAAIC,OAC3BpB,EAAEa,aAAaQ,OAAOrB,EAAE,qBAAqBsB,KAAK,QAASF,MAAMD,IAAII,KAAKH,MAAMI,UASrEC,CAAuBb,WAEjCc,MAAMC,aAAaC,qBAezB,CACHC,KANO,SAASC,YACZ1B,YAAcJ,EAAE,IAAM8B,QAC1B3B,8BAA8BC"}
Close