403Webshell
Server IP : 121.121.20.254  /  Your IP : 216.73.216.202
Web Server : Microsoft-IIS/10.0
System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64
User : IUSR ( 0)
PHP Version : 8.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/StockAdjust/wp-content/plugins/wp-user-avatar/src/Classes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/StockAdjust/wp-content/plugins/wp-user-avatar/src/Classes/BuddyPressBbPress.php
<?php

namespace ProfilePress\Core\Classes;

class BuddyPressBbPress
{
    public function __construct()
    {
        if (ppress_settings_by_key('override_bp_avatar') == 'yes') {
            add_filter('bp_core_fetch_avatar', array(__CLASS__, 'override_html_avatar'), 999999999, 3);
            add_filter('bp_core_fetch_avatar_url', array(__CLASS__, 'override_avatar_url'), 999999999, 2);
        }

        add_filter('bp_core_get_user_domain', array(__CLASS__, 'override_bp_profile_url'), 999999999, 4);

        add_filter('bbp_pre_get_user_profile_url', array(__CLASS__, 'override_bbp_profile_url'), 9999999);
    }

    public static function override_bp_profile_url($domain, $user_id, $user_nicename, $user_login)
    {
        if (ppress_settings_by_key('override_bp_profile_url') == 'yes') {
            if ( ! $user_login) {
                $user_login = ppress_get_username_by_id($user_id);
            }

            $domain = ppress_get_frontend_profile_url($user_login);
        }

        return $domain;
    }

    public static function override_bbp_profile_url($user_id)
    {
        if (ppress_settings_by_key('override_bbp_profile_url') == 'yes') {
            if (is_numeric($user_id)) {
                $user_id = ppress_get_frontend_profile_url(
                    ppress_get_username_by_id($user_id)
                );
            }
        }

        return $user_id;
    }

    /**
     * Override HTML BP avatar output.
     *
     * @param string $image_in_html
     * @param array $params
     * @param int $item_id
     *
     * @return mixed
     */
    public static function override_html_avatar($image_in_html, $params, $item_id)
    {
        if (isset($params['object']) && 'user' == $params['object']) {

            $avatar_url = UserAvatar::get_avatar_complete_url($item_id);

            if ( ! empty($avatar_url)) {
                return preg_replace('/src=".+?"/', 'src="' . esc_url($avatar_url) . '"', $image_in_html);
            }
        }

        return $image_in_html;
    }

    /**
     * Override BP avatar url.
     *
     * @param string $image_url
     * @param array $params
     *
     * @return bool|mixed|string
     */
    public static function override_avatar_url($image_url, $params)
    {
        if (isset($params['object']) && 'user' == $params['object']) {

            $user_id = absint($params['item_id']);

            $avatar_url = UserAvatar::get_avatar_complete_url($user_id);

            if ( ! empty($avatar_url)) {
                $image_url = $avatar_url;
            }
        }

        return $image_url;
    }

    public static function get_instance()
    {
        static $instance = null;

        if (is_null($instance)) {
            $instance = new self();
        }

        return $instance;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit