403Webshell
Server IP : 62.60.133.156  /  Your IP : 216.73.217.51
Web Server : LiteSpeed
System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User : mimradmin ( 1166)
PHP Version : 7.4.33
Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : OFF |  Pkexec : OFF
Directory :  /proc/self/cwd/wp-content/plugins/mailchimp-for-wp/includes/integrations/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /proc/self/cwd/wp-content/plugins/mailchimp-for-wp/includes/integrations/class-user-integration.php
<?php

defined('ABSPATH') or exit;

/**
 * Class MC4WP_User_Integration
 *
 * @access public
 * @since 2.0
 */
abstract class MC4WP_User_Integration extends MC4WP_Integration
{
    /**
     * @param WP_User $user
     *
     * @return array
     */
    protected function user_merge_vars(WP_User $user)
    {

        // start with user_login as name, since that's always known
        $data = [
            'EMAIL' => $user->user_email,
            'NAME'  => $user->user_login,
        ];

        if ('' !== $user->first_name) {
            $data['NAME']  = $user->first_name;
            $data['FNAME'] = $user->first_name;
        }

        if ('' !== $user->last_name) {
            $data['LNAME'] = $user->last_name;
        }

        if ('' !== $user->first_name && '' !== $user->last_name) {
            $data['NAME'] = sprintf('%s %s', $user->first_name, $user->last_name);
        }

        /**
         * @use mc4wp_integration_user_data
         * @since 3.0
         * @deprecated 4.0
         * @ignore
         */
        $data = (array) apply_filters('mc4wp_user_merge_vars', $data, $user);

        /**
         * Filters the data for user-related integrations
         * @since 4.2
         * @param array $data
         * @param WP_User $user
         */
        $data = (array) apply_filters('mc4wp_integration_user_data', $data, $user);

        return $data;
    }
}

Youez - 2016 - github.com/yon3zu