Sindbad~EG File Manager

Current Path : /var/www/html/ch.sumar.com.py/wp-content/plugins/peepso/3/classes/compatibility/
Upload File :
Current File : /var/www/html/ch.sumar.com.py/wp-content/plugins/peepso/3/classes/compatibility/aio_seo.php

<?php

class PeepSo3_Compatibility_AIO_SEO {
    private static $instance;

    public static function get_instance() {
        return isset(self::$instance) ? self::$instance : self::$instance = new self;
    }

    private function __construct()
    {
        add_filter('aioseo_disable', function($ret){
            if (!$ret) {
                $url = PeepSoUrlSegments::get_instance();
                if ($url->_shortcode == 'peepso_recover' && 'POST' === $_SERVER['REQUEST_METHOD'] && isset($_POST['email'])) {
                    $ret = true;
                } elseif ($url->_shortcode == 'peepso_reset' && 'POST' === $_SERVER['REQUEST_METHOD'] && isset($_POST['pass1'])) {
                    $ret = true;
                }
            }

            return $ret;
        });

        add_filter('aioseo_meta_views', function($ret) {
            $url = PeepSoUrlSegments::get_instance();

            if ($url->_shortcode == 'peepso_profile' && $url->get(3) == 'create') {
                return '';
            } else {
                return $ret;
            }
        }, 999);

        #6688 Force redirect if URL contains the --peepso-url-- handle, as AIOSEO attempts to visit nonsense URLs
        add_action('init', function(){
            $url = rtrim(strtolower($_SERVER['REQUEST_URI']),'/');
            if (stristr($url, '--peepso-url--')) {
                $url=str_ireplace('--peepso-url--','',$url);
                nocache_headers();
                wp_redirect($url,301);
                exit();
            }
        });
    }
}

if(!defined('PEEPSO_DISABLE_COMPATIBILITY_AIO_SEO')) {
    PeepSo3_Compatibility_AIO_SEO::get_instance();
 }

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists