!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Microsoft-IIS/10.0. PHP/7.4.33 

uname -a: Windows NT LAKE 10.0 build 20348 (Windows Server 2016) AMD64 

IWPD_801(traduongco) 

Safe-mode: OFF (not secure)

D:\vhosts\traduong.com.vn\admin.traduong.com.vn\Content\admin\assets\es6\core\   drwxrwxrwx
Free 185.08 GB of 400 GB (46.27%)
Detected drives: [ a ] [ c ] [ d ] [ e ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     core.js (1.64 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
export default class Core {

    constructor() {
		this.sideNav();
		this.pfScrollBar();
		this.tooltipInit();
		this.popOverInit();
		this.toastInit();
	}
	
    sideNav() {
		const appLayout =  $('.app');
		const isFolded = 'is-folded';
		const isExpand = 'is-expand';
		const active = 'active';
		const drodpDownItem = '.side-nav .side-nav-menu .nav-item .dropdown-menu li'

		
			if ($(drodpDownItem).hasClass('active')) {
				$( drodpDownItem + '.' + active).parent().parent().addClass('open') 
			}

        $('.side-nav .side-nav-menu li a').on('click', (e) => {
			const $this = $(e.currentTarget);
			
			if ($this.parent().hasClass("open")) {

				$this.parent().children('.dropdown-menu').slideUp(200, ()=> {
					$this.parent().removeClass("open");
				});

			} else {
				$this.parent().parent().children('li.open').children('.dropdown-menu').slideUp(200);
				$this.parent().parent().children('li.open').children('a').removeClass('open');
				$this.parent().parent().children('li.open').removeClass("open");
				$this.parent().children('.dropdown-menu').slideDown(200, ()=> {
					$this.parent().addClass("open");
				});
			}
		});

		$('.header .nav-left .desktop-toggle').on('click', () => {
			appLayout.toggleClass(isFolded)
		});

		$('.header .nav-left .mobile-toggle').on('click', () => {
			appLayout.toggleClass(isExpand)
		});
	} 

	pfScrollBar() {
		$('.scrollable').perfectScrollbar();
	}
	
	tooltipInit() {
		$('[data-toggle="tooltip"]').tooltip()
	}

	popOverInit() {
		$('[data-toggle="popover"]').popover({
			trigger: 'focus'
		})
	}

	toastInit() {
		$('.toast').toast();
	}
}    

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.7304 ]--