403Webshell
Server IP : 121.121.20.254  /  Your IP : 216.73.216.202
Web Server : Microsoft-IIS/10.0
System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64
User : IUSR ( 0)
PHP Version : 8.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /inetpub/wwwroot/KnowledgeBase/wp-content/plugins/filebird-pro/includes/Controller/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /inetpub/wwwroot/KnowledgeBase/wp-content/plugins/filebird-pro/includes/Controller/Controller.php
<?php
namespace FileBird\Controller;

defined( 'ABSPATH' ) || exit;

class Controller {

	protected $folder_table   = 'fbv';
	protected $relation_table = 'fbv_attachment_folder';

	public function __construct() {

	}

	protected function loadView( $view, $data = array(), $return_html = false ) {
		$viewPath = NJFB_PLUGIN_PATH . 'views/' . $view . '.php';
		if ( ! file_exists( $viewPath ) ) {
			die( 'View <strong>' . esc_html( $viewPath ) . '</strong> not found!' );
		}
		extract( $data );
		if ( $return_html === true ) {
			ob_start();
			include_once $viewPath;
			return ob_get_clean();
		}
		include_once $viewPath;
	}
	protected function getTable( $table ) {
		global $wpdb;
		return $wpdb->prefix . $table;
	}
	protected function getNodeClass( $id, $count = 0 ) {
		return "fbv_$id fbvc_$count";
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit