!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.4.16. PHP/5.4.16 

uname -a: Linux roko-bkp 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64 

uid=48(apache) gid=48(apache) groups=48(apache),1003(webmaster) 

Safe-mode: OFF (not secure)

/var/www/html/site/ipanel/js/tiny_mce/plugins/ibrowser/langs/   drwxr-xr-x
Free 9.18 GB of 93.48 GB (9.82%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     lang.class.php (2.74 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// ================================================
// PHP image browser - iBrowser
// ================================================
// iBrowser - language class
// ================================================
// Developed: net4visions.com
// Copyright: net4visions.com
// License: GPL - see readme.txt
// (c)2005 All rights reserved.
// ================================================
// Revision: 1.0                   Date: 2005/04/27
// ================================================

class PLUG_Lang {
    
// current language
    
var $lang;
    
// accessors
    
function setLang$value ) {
        
$this -> lang $value;
    }
    function 
getLang() {
        
$this -> lang $value;
    }

    
// variable to hold current language block
    
var $block;
    
// accessors
    
function setBlock$value ) {
        
$this -> block $value;
    }
    function 
getBlock() {
        return 
$this -> block;
    }

    
// charset for the current language
    
var $charset;
    
// accessors
    
function getCharset() {
        return 
$this -> charset;
    }

    
// text direction for the current language
    
var $dir;
    
// accessors
    
function getDir() {
        return 
$this -> dir;
    }

    
// language data
    
var $lang_data;
    
// default language data
    
var $default_lang_data;

    
// constructor
    
function PLUG_Lang$lang '' ) {
        global 
$cfg;
        if ( 
$lang == '' ) {
            
$this -> lang $cfg['lang'];
        } else {
            
$this -> lang $lang;
        }
        
$this -> loadData();
    }

    
// load language data
    
function loadData() {
        global 
$cfg;
        include( 
dirname(__FILE__) . '/' $this -> lang.'.php' );
        
$this -> charset $lang_charset;
        
$this -> dir $lang_direction;
        
$this -> lang_data $lang_data;
        unset( 
$lang_data );
        include( 
dirname(__FILE__) . '/' $cfg['lang'].'.php' );
        
$this -> default_lang_data $lang_data;
    }

    
// return message
    
function showMessage$message$block '' ) {
        
$_block = ( $block == '' ) ? $this -> block$block;
        if ( !empty( 
$this -> lang_data$_block][ $message ] ) ) {
            
// return message
            
return $this -> lang_data$_block][ $message ];
        } else {
            
// if message is not present in current language data
            // return message from default language
            
return ( isset( $this -> default_lang_data$_block][ $message ] ) ? $this -> default_lang_data$_block][ $message ] : '' );
        }
    }

    
// shortcut for showMessage
    
function m$message$block '' ) {
        return 
$this -> showMessage$message$block );
    }

    
// sets the root point for the data
    
function setRoot$block '' ) {
        
// if no block passed -> reload data
        
if ( $block == '' ) {
            
$this -> loadData();
        } else {
            
// "move pointer"
            
$this -> lang_data $this -> lang_data$block ];
            
$this -> default_lang_data $this -> default_lang_data$block ];
        }
    }
}
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0041 ]--