403Webshell
Server IP : 43.130.17.34  /  Your IP : 216.73.216.190
Web Server : nginx/1.28.0
System : Linux VM-4-12-opencloudos 6.6.92-34.1.oc9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 25 21:32:13 CST 2025 x86_64
User : www ( 1000)
PHP Version : 8.0.26
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /www/wwwroot/yespkg.com/wp-content/plugins/bb-plugin/includes/vendor/mailchimp/Mailchimp/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/wwwroot/yespkg.com/wp-content/plugins/bb-plugin/includes/vendor/mailchimp/Mailchimp/Vip.php
<?php

class Mailchimp_Vip {
    public function __construct(Mailchimp $master) {
        $this->master = $master;
    }

    /**
     * Retrieve all Activity (opens/clicks) for VIPs over the past 10 days
     * @return array structs for each activity recorded.
     *     - action string The action taken - either "open" or "click"
     *     - timestamp string The datetime the action occurred in GMT
     *     - url string IF the action is a click, the url that was clicked
     *     - unique_id string The campaign_id of the List the Member appears on
     *     - title string The campaign title
     *     - list_name string The name of the List the Member appears on
     *     - list_id string The id of the List the Member appears on
     *     - email string The email address of the member
     *     - fname string IF a FNAME merge field exists on the list, that value for the member
     *     - lname string IF a LNAME merge field exists on the list, that value for the member
     *     - member_rating int the rating of the subscriber. This will be 1 - 5 as described <a href="http://eepurl.com/f-2P" target="_blank">here</a>
     *     - member_since string the datetime the member was added and/or confirmed
     *     - geo associative_array the geographic information if we have it. including:
     *         - latitude string the latitude
     *         - longitude string the longitude
     *         - gmtoff string GMT offset
     *         - dstoff string GMT offset during daylight savings (if DST not observered, will be same as gmtoff
     *         - timezone string the timezone we've place them in
     *         - cc string 2 digit ISO-3166 country code
     *         - region string generally state, province, or similar
     */
    public function activity() {
        $_params = array();
        return $this->master->call('vip/activity', $_params);
    }

    /**
     * Add VIPs (previously called Golden Monkeys)
     * @param string $id
     * @param array $emails
     *     - email string an email address - for new subscribers obviously this should be used
     *     - euid string the unique id for an email address (not list related) - the email "id" returned from listMemberInfo, Webhooks, Campaigns, etc.
     *     - leid string the list email id (previously called web_id) for a list-member-info type call. this doesn't change when the email address changes
     * @return associative_array of data and success/error counts
     *     - success_count int the number of successful adds
     *     - error_count int the number of unsuccessful adds
     *     - errors array array of error structs including:
     *         - email associative_array whatever was passed in the email parameter
     *             - email string the email address added
     *             - euid string the email unique id
     *             - leid string the list member's truly unique id
     *         - code string the error code
     *         - error string the error message
     *     - data array array of structs for each member added
     *         - email associative_array whatever was passed in the email parameter
     *             - email string the email address added
     *             - euid string the email unique id
     *             - leid string the list member's truly unique id
     */
    public function add($id, $emails) {
        $_params = array("id" => $id, "emails" => $emails);
        return $this->master->call('vip/add', $_params);
    }

    /**
     * Remove VIPs - this does not affect list membership
     * @param string $id
     * @param array $emails
     *     - email string an email address - for new subscribers obviously this should be used
     *     - euid string the unique id for an email address (not list related) - the email "id" returned from listMemberInfo, Webhooks, Campaigns, etc.
     *     - leid string the list email id (previously called web_id) for a list-member-info type call. this doesn't change when the email address changes
     * @return associative_array of data and success/error counts
     *     - success_count int the number of successful deletions
     *     - error_count int the number of unsuccessful deletions
     *     - errors array array of error structs including:
     *         - email associative_array whatever was passed in the email parameter
     *             - email string the email address
     *             - euid string the email unique id
     *             - leid string the list member's truly unique id
     *         - code string the error code
     *         - msg string the error message
     *     - data array array of structs for each member deleted
     *         - email associative_array whatever was passed in the email parameter
     *             - email string the email address
     *             - euid string the email unique id
     *             - leid string the list member's truly unique id
     */
    public function del($id, $emails) {
        $_params = array("id" => $id, "emails" => $emails);
        return $this->master->call('vip/del', $_params);
    }

    /**
     * Retrieve all Golden Monkey(s) for an account
     * @return array structs for each Golden Monkey, including:
     *     - list_id string The id of the List the Member appears on
     *     - list_name string The name of the List the Member appears on
     *     - email string The email address of the member
     *     - fname string IF a FNAME merge field exists on the list, that value for the member
     *     - lname string IF a LNAME merge field exists on the list, that value for the member
     *     - member_rating int the rating of the subscriber. This will be 1 - 5 as described <a href="http://eepurl.com/f-2P" target="_blank">here</a>
     *     - member_since string the datetime the member was added and/or confirmed
     */
    public function members() {
        $_params = array();
        return $this->master->call('vip/members', $_params);
    }

}



Youez - 2016 - github.com/yon3zu
LinuXploit