PATH:
home
/
lab2454c
/
gemition.com
/
wp-content
/
plugins
/
wp-webhooks
/
core
/
includes
/
integrations
/
edd
/
actions
<?php if ( ! class_exists( 'WP_Webhooks_Integrations_edd_Actions_edd_update_customer' ) ) : /** * Load the edd_update_customer action * * @since 4.2.0 * @author Ironikus <info@ironikus.com> */ class WP_Webhooks_Integrations_edd_Actions_edd_update_customer { public function is_active(){ $is_active = true; //Backwards compatibility for the "Easy Digital Downloads" integration if( defined( 'WPWH_EDD_NAME' ) ){ $is_active = false; } return $is_active; } public function get_details(){ $translation_ident = "action-edd_update_customer-description"; $parameter = array( 'customer_value' => array( 'required' => true, 'short_description' => WPWHPRO()->helpers->translate( '(String) The actual value you want to use to determine the customer. In case you havent set the get_customer_by argument or you set it to email, place the customer email in here.', $translation_ident ) ), 'get_customer_by' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The type of value you want to use to fetch the customer from the database. Possible values: email, customer_id, user_id. Default: email', $translation_ident ) ), 'customer_email' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The primary email of the customer you want to update. In case the user does not exists, we use this email to create it (If you have set the argument create_if_none to yes).', $translation_ident ) ), 'customer_first_name' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The first name of the customer.', $translation_ident ) ), 'customer_last_name' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The last name of the customer.', $translation_ident ) ), 'additional_emails' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) A comma-separated list of additional email addresses. Please check the description for further details.', $translation_ident ) ), 'attach_payments' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) A comma-, and doublepoint-separated list of payment ids you want to assign to the user. Please check the description for further details.', $translation_ident ) ), 'increase_purchase_count' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) increase the purchase count for the customer.', $translation_ident ) ), 'increase_lifetime_value' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Float) The price you want to add to the lifetime value of the customer. Please check the description for further details.', $translation_ident ) ), 'set_primary_email' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The email you want to set as the new primary email. Default: customer_email', $translation_ident ) ), 'customer_notes' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) A JSON formatted string containing one or multiple customer notes. Please check the description for further details.', $translation_ident ) ), 'customer_meta' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) A JSON formatted string containing one or multiple customer meta data. Please check the description for further details.', $translation_ident ) ), 'user_id' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) The user id of the WordPress user you want to assign to the customer. Please read the description for further details.', $translation_ident ) ), 'create_if_none' => array( 'short_description' => WPWHPRO()->helpers->translate( 'Set this argument to "yes" if you want to create the customer in case it does not exist.', $translation_ident ) ), 'do_action' => array( 'short_description' => WPWHPRO()->helpers->translate( 'Advanced: Register a custom action after WP Webhooks fires this webhook. More infos are in the description.', $translation_ident ) ), ); //This is a more detailled view of how the data you sent will be returned. $returns = array( 'success' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Bool) True if the action was successful, false if not. E.g. array( \'success\' => true )', $translation_ident ) ), 'msg' => array( 'short_description' => WPWHPRO()->helpers->translate( '(string) A message with more information about the current request. E.g. array( \'msg\' => "This action was successful." )', 'action-update-customer-content' ) ), 'customer_id' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) The ID of the customer', 'action-update-customer-content' ) ), 'customer_email' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The email you set within the customer_email argument.', 'action-update-customer-content' ) ), 'additional_emails' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The additional emails you set within the additional_emails argument.', 'action-update-customer-content' ) ), 'customer_first_name' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The first name you set within the customer_first_name argument.', 'action-update-customer-content' ) ), 'customer_last_name' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The last name you set within the customer_last_name argument.', 'action-update-customer-content' ) ), 'attach_payments' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The payment ids you set within the attach_payments argument.', 'action-update-customer-content' ) ), 'increase_purchase_count' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) The purchase count you set within the increase_purchase_count argument.', 'action-update-customer-content' ) ), 'increase_lifetime_value' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Float) The lifetime value you set within the increase_lifetime_value argument.', 'action-update-customer-content' ) ), 'customer_notes' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The customer notes you set within the customer_notes argument.', 'action-update-customer-content' ) ), 'customer_meta' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The customer meta you set within the customer_meta argument.', 'action-update-customer-content' ) ), 'user_id' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The user id you set within the user_id argument.', 'action-update-customer-content' ) ), ); $returns_code = array ( 'success' => true, 'msg' => 'The user was successfully updated.', 'customer_id' => '5', 'customer_email' => 'test@domain.com', 'additional_emails' => 'second@domain.com,thir@domain.com', 'customer_first_name' => 'John', 'customer_last_name' => 'Doe', 'attach_payments' => '747', 'increase_purchase_count' => 2, 'increase_lifetime_value' => '55.46', 'customer_notes' => '["First Note 1","First Note 2"]', 'customer_meta' => '{"meta_1": "test1","meta_2": "test2"}', 'user_id' => 23, ); ob_start(); ?> <?php echo WPWHPRO()->helpers->translate( "This webhook action is used to update a customer for Easy Digital Downloads within your WordPress system via a webhook call.", $translation_ident ); ?> <br> <?php echo WPWHPRO()->helpers->translate( "The description is uniquely made for the <strong>edd_update_customer</strong> webhook action.", $translation_ident ); ?> <br> <?php echo WPWHPRO()->helpers->translate( "In case you want to first understand how to setup webhook actions in general, please check out the following manuals:", $translation_ident ); ?> <br> <a title="Go to wp-webhooks.com/docs" target="_blank" href="https://wp-webhooks.com/docs/article-categories/get-started/">https://wp-webhooks.com/docs/article-categories/get-started/</a> <br><br> <h4><?php echo WPWHPRO()->helpers->translate( "How to use <strong>edd_update_customer</strong>", $translation_ident ); ?></h4> <ol> <li><?php echo WPWHPRO()->helpers->translate( "The first argument you need to set within your webhook action request is the <strong>action</strong> argument. This argument is always required. Please set it to <strong>edd_update_customer</strong>.", $translation_ident ); ?></li> <li><?php echo WPWHPRO()->helpers->translate( "As a second argument, you need to set the actual data you want to use for fetching the user. If you have chosen nothing or <strong>email</strong> for the <strong>get_customer_by</strong> argument, you need to include the customers email address here.", $translation_ident ); ?></li> <li><?php echo WPWHPRO()->helpers->translate( "All the other arguments are optional and just extend the update process of the EDD customer.", $translation_ident ); ?></li> </ol> <br><br> <h4><?php echo WPWHPRO()->helpers->translate( "Tipps", $translation_ident ); ?></h4> <ol> <li><?php echo WPWHPRO()->helpers->translate( "Updating a customer is not the same as updating a user. Easy Digital Downloads uses its own logic and tables for customers. Still, you can assign or update a user to a customer using the <strong>user_id</strong> argument.", $translation_ident ); ?></li> <li><?php echo WPWHPRO()->helpers->translate( "You can also create a user if your given values did not find any. To do that, simply set the <strong>create_if_none</strong> argument to <strong>yes</strong>.", $translation_ident ); ?></li> <li><?php echo WPWHPRO()->helpers->translate( "Since this webhook action is very versatile, it is highly recommended to check out the <strong>Special Arguments list down below</strong>.", $translation_ident ); ?></li> </ol> <br><br> <h4><?php echo WPWHPRO()->helpers->translate( "Special Arguments", $translation_ident ); ?></h4> <br> <h5><?php echo WPWHPRO()->helpers->translate( "customer_value", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "The value we use to determine the customer. In case you haven't set the <strong>get_user_by</strong> argument or you have set it to email, please include the customer email in here. If you have chosen the <strong>customer_id</strong>, please include the customer id and in case you set user_id, please include the user id.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "get_customer_by", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "Customize the default way we use to fetch the customer from the backend. Possible values are <strong>email</strong> (Default), <strong>customer_id</strong> or <strong>user_id</strong>.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "customer_email", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "The customer email is the primary email address of the customer you want to update. In case we didn't find any customer and you set the <strong>create_if_none</strong> argument to <strong>yes</strong>, we will create the customer with this email address in case you did not use an email for the <strong>customer_value</strong> argument.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "additional_emails", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "You can add and/or remove additional emails on the customer. To do that, simply comma-separate the emails within the field. The primary email address is always the <strong>customer_email</strong> argument. Here is an example:", $translation_ident ); ?> <pre>jondoe@mydomain.com,anotheremail@domain.com</pre> <br> <?php echo WPWHPRO()->helpers->translate( "You can also remove already assigned email addresses. To do that, simply add <strong>:remove</strong> after the email. This will cause the email to be removed from the user. Here is an example:", $translation_ident ); ?> <pre>fourth@domain.com:remove,more@domain.demo</pre> <?php echo WPWHPRO()->helpers->translate( "The above example removes the email fourth@domain.com and adds the email more@domain.demo", $translation_ident ); ?> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "attach_payments", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "This argument allows you to connect and/or remove certain payment ids at the user. To set multiple payments, please separate them with a comma. By default, it recalculates the total amount. If you do not want that, add <strong>:no_update_stats</strong> after the payment id. Here is an example:", $translation_ident ); ?> <pre>125,365,444:no_update_stats,777</pre> <?php echo WPWHPRO()->helpers->translate( "The example above asigns the payment ids 125, 365, 444, 777 to the customer. It also assigns the payment id 444, but it does not update the statistics.", $translation_ident ); ?> <br> <?php echo WPWHPRO()->helpers->translate( "To remove certain payments, please add <strong>:remove</strong> after the payment id. You can also combine it with the recalculation setting of the totals. Here is an example:", $translation_ident ); ?> <pre>125remove,444:no_update_stats,777</pre> <?php echo WPWHPRO()->helpers->translate( "The example above removes the payment with the id 125, adds the payment 777 and adds the payment 444 without refreshing the stats.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "increase_purchase_count", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "This field accepts a number, which is added on top of the existing purchase count. If you are going to add three payments for a customer that has currently none, and you set this value to 1, your total purchase count will show 4.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "increase_lifetime_value", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "This field accepts a decimalnumber, which is added on top of the existing lifetime value. If you are going to add one payment with a price of 20$ for a customer that has 0 lifetime value, and you set this value to 5$, the total lifetime value will show 25$.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "customer_notes", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "Use this argument to add one or multiple customer notes to the customer. This value accepts a JSON, containing one customer note per line. Here is an example:", $translation_ident ); ?> <pre>[ "First Note 1", "First Note 2" ]</pre> <?php echo WPWHPRO()->helpers->translate( "The example above adds two notes.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "customer_meta", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "This argument allows you to add one or multiple customer meta values to your newly created customer, using a JSON string. Easy Digital Downloads uses a custom table for these meta values. Here are some examples on how you can use it:", $translation_ident ); ?> <ul class="list-group list-group-flush"> <li class="list-group-item"> <strong><?php echo WPWHPRO()->helpers->translate( "Add/update/remove meta values", $translation_ident ); ?></strong> <br> <?php echo WPWHPRO()->helpers->translate( "This JSON shows you how to add simple meta values for your customer.", $translation_ident ); ?> <pre>{ "meta_1": "test1", "meta_2": "test2" }</pre> <?php echo WPWHPRO()->helpers->translate( "The key is always the customer meta key. On the right, you always have the value for the customer meta value. In this example, we add two meta values to the customer meta. In case a meta key already exists, it will be updated.", $translation_ident ); ?> </li> <li class="list-group-item"> <strong><?php echo WPWHPRO()->helpers->translate( "Delete meta values", $translation_ident ); ?></strong> <br> <?php echo WPWHPRO()->helpers->translate( "You can also delete existing meta key by setting the value to <strong>ironikus-delete</strong>. This way, the meta will be removed. Here is an example:", $translation_ident ); ?> <pre>{ "meta_1": "test1", "meta_2": "ironikus-delete" }</pre> <?php echo WPWHPRO()->helpers->translate( "The example above will add the meta key <strong>meta_1</strong> with the value <strong>test1</strong> and it deletes the meta key <strong>meta_2</strong> including its value.", $translation_ident ); ?> </li> <li class="list-group-item"> <strong><?php echo WPWHPRO()->helpers->translate( "Add/update serialized meta values", $translation_ident ); ?></strong> <br> <?php echo WPWHPRO()->helpers->translate( "Sometimes, it is necessary to add serialized arrays to your data. Using the json below, you can do exactly that. You can use a simple JSON string as the meta value and we automatically convert it to a serialized array once you place the identifier <strong>ironikus-serialize</strong> in front of it. Here is an example:", $translation_ident ); ?> <pre>{ "meta_1": "test1", "meta_2": "ironikus-serialize{\"test_key\":\"wow\",\"testval\":\"new\"}" }</pre> <?php echo WPWHPRO()->helpers->translate( "This example adds a simple meta with <strong>meta_1</strong> as the key and <strong>test1</strong> as the value. The second meta value contains a json value with the identifier <strong>ironikus-serialize</strong> in the front. Once this value is saved to the database, it gets turned into a serialized array. In this example, it would look as followed: ", $translation_ident ); ?> <pre>a:2:{s:8:"test_key";s:3:"wow";s:7:"testval";s:3:"new";}</pre> </li> </ul> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "user_id", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "This argument allows you to assign a user to the Easy Digital Downloads customer. In case the user id is not defined, we will automatically try to match the primary email with a WordPress user.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "create_if_none", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "This argument allows you to create a customer in case it does not exist yet. Please set this argument to <strong>yes</strong> to create the customer. Default: <strong>no</strong>. In case the user does not exist, we use the email from the <strong>customer_value</strong> argument or in case you used a different value, we use the emfial from the <strong>customer_email</strong> argument.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "do_action", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "The do_action argument is an advanced webhook for developers. It allows you to fire a custom WordPress hook after the <strong>edd_update_customer</strong> action was fired (It also fires if the user was not successfully updated, but you can check if the user id is set or not to determine if it worked).", $translation_ident ); ?> <br> <?php echo WPWHPRO()->helpers->translate( "You can use it to trigger further logic after the webhook action. Here's an example:", $translation_ident ); ?> <br> <br> <?php echo WPWHPRO()->helpers->translate( "Let's assume you set for the <strong>do_action</strong> parameter <strong>fire_this_function</strong>. In this case, we will trigger an action with the hook name <strong>fire_this_function</strong>. Here's how the code would look in this case:", $translation_ident ); ?> <pre>add_action( 'fire_this_function', 'my_custom_callback_function', 20, 2 ); function my_custom_callback_function( $customer_id, $return_args ){ //run your custom logic in here } </pre> <?php echo WPWHPRO()->helpers->translate( "Here's an explanation to each of the variables that are sent over within the custom function.", $translation_ident ); ?> <ol> <li> <strong>$customer_id</strong> (integer) <br> <?php echo WPWHPRO()->helpers->translate( "The customer id of the newly created customer. 0 or false if something went wrong.", $translation_ident ); ?> </li> <li> <strong>$return_args</strong> (array) <br> <?php echo WPWHPRO()->helpers->translate( "An array containing the information we will send back as the response to the initial webhook caller. This includes all of in the request set data.", $translation_ident ); ?> </li> </ol> <?php $description = ob_get_clean(); return array( 'action' => 'edd_update_customer', 'name' => WPWHPRO()->helpers->translate( 'Update customer', $translation_ident ), 'sentence' => WPWHPRO()->helpers->translate( 'update a customer', $translation_ident ), 'parameter' => $parameter, 'returns' => $returns, 'returns_code' => $returns_code, 'short_description' => WPWHPRO()->helpers->translate( 'This webhook action allows you to update (and create) a customer within Easy Digital Downloads.', $translation_ident ), 'description' => $description, 'integration' => 'edd', 'premium' => false, ); } public function execute( $return_data, $response_body ){ $customer_id = 0; $create_email = false; $customer = new stdClass; $return_args = array( 'success' => false, 'msg' => '', 'customer_id' => 0, 'customer_email' => '', 'additional_emails' => '', 'customer_first_name' => '', 'customer_last_name' => '', 'attach_payments' => '', 'increase_purchase_count' => '', 'increase_lifetime_value' => '', 'customer_notes' => '', 'customer_meta' => '', 'user_id' => '', ); $get_customer_by = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'get_customer_by' ); $customer_value = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'customer_value' ); $customer_email = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'customer_email' ); $set_primary_email = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'set_primary_email' ); $customer_first_name = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'customer_first_name' ); $customer_last_name = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'customer_last_name' ); $additional_emails = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'additional_emails' ); $attach_payments = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'attach_payments' ); $increase_purchase_count = intval( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'increase_purchase_count' ) ); $user_id = intval( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'user_id' ) ); $increase_lifetime_value = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'increase_lifetime_value' ); $customer_notes = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'customer_notes' ); $customer_meta = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'customer_meta' ); $create_if_none = ( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'create_if_none' ) === 'yes' ) ? true : false; $do_action = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'do_action' ); if( ! class_exists( 'EDD_Customer' ) ){ $return_args['msg'] = WPWHPRO()->helpers->translate( 'The class EDD_Customer() is undefined. The customer could not be created.', 'action-edd_update_customer-failure' ); return $return_args; } if( empty( $customer_value ) ){ $return_args['msg'] = WPWHPRO()->helpers->translate( 'Customer not updated. The argument customer_value cannot be empty.', 'action-edd_update_customer-failure' ); return $return_args; } switch( $get_customer_by ){ case 'customer_id': $customer = new EDD_Customer( intval( $customer_value ) ); break; case 'user_id': $customer = new EDD_Customer( intval( $customer_value ), true ); break; case 'email': default: $customer = new EDD_Customer( $customer_value ); break; } if ( empty( $customer ) || empty( $customer->id ) ) { if( ! $create_if_none ){ $return_args['msg'] = WPWHPRO()->helpers->translate( 'The customer you tried to update does not exist.', 'action-edd_update_customer-failure' ); return $return_args; } else { if( is_email( $customer_value ) ){ $create_email = $customer_value; } else { if( ! empty( $customer_email ) && is_email( $customer_email ) ){ $create_email = $customer_email; } } if( empty( $create_email ) ){ $return_args['msg'] = WPWHPRO()->helpers->translate( 'No email found. Please set an email first to create the customer.', 'action-edd_update_customer-failure' ); return $return_args; } $customer = new EDD_Customer( $create_email ); if( ! empty( $customer->id ) ){ $return_args['msg'] = WPWHPRO()->helpers->translate( 'The email defined within the customer_value was not registered for a customer, but the email within customer_email was. Please use a different email to create the customer.', 'action-edd_update_customer-failure' ); return $return_args; } if( empty( $customer_first_name ) && empty( $customer_last_name ) ) { $name = $create_email; } else { $name = trim( $customer_first_name . ' ' . $customer_last_name ); } $customer_data = array( 'name' => $name, 'email' => $create_email ); //tro to match a WordPress user with an email if( empty( $user_id ) && ! empty( $create_email ) && is_email( $create_email ) ){ $wp_user = get_user_by( 'email', sanitize_email( $create_email ) ); if ( ! empty( $wp_user ) ) { $user_id = $wp_user->ID; } } if( ! empty( $user_id ) ){ $customer_data['user_id'] = $user_id; } $customer_id = $customer->create( $customer_data ); } } else { $customer_id = $customer->id; } if( ! empty( $customer_id ) ){ $new_customer_data = array(); if( ! empty( $customer_first_name ) || ! empty( $customer_last_name ) ) { $new_customer_data['name'] = trim( $customer_first_name . ' ' . $customer_last_name ); } if( ! empty( $customer_email ) ) { $new_customer_data['email'] = $customer_email; } if( ! empty( $user_id ) ) { $new_customer_data['user_id'] = $user_id; } if( ! empty( $new_customer_data ) ){ $customer->update( $new_customer_data ); } if( ! empty( $additional_emails ) ){ $email_arr = explode( ',', $additional_emails ); if( is_array( $email_arr ) ){ foreach( $email_arr as $semail ){ $semail_settings = explode( ':', $semail ); if( in_array( 'remove', $semail_settings ) ){ if( is_email( $semail_settings[0] ) ){ $customer->remove_email( $semail_settings[0] ); } } else { if( is_email( $semail_settings[0] ) ){ $customer->add_email( $semail_settings[0] ); } } } } } if( ! empty( $set_primary_email ) && is_email( $set_primary_email ) ){ $customer->set_primary_email( $set_primary_email ); } if( ! empty( $attach_payments ) ){ $payments_arr = explode( ',', $attach_payments ); if( is_array( $payments_arr ) ){ foreach( $payments_arr as $spayment ){ $spayment_settings = explode( ':', $spayment ); if( in_array( 'remove', $spayment_settings ) ){ if( in_array( 'no_update_stats', $spayment_settings ) ){ $customer->remove_payment( intval( $spayment_settings[0] ), false ); } else { $customer->remove_payment( intval( $spayment_settings[0] ) ); } } else { if( in_array( 'no_update_stats', $spayment_settings ) ){ $customer->attach_payment( intval( $spayment_settings[0] ), false ); } else { $customer->attach_payment( intval( $spayment_settings[0] ) ); } } } } } if( ! empty( $increase_purchase_count ) && is_numeric( $increase_purchase_count ) ){ $customer->increase_purchase_count( $increase_purchase_count ); } if( ! empty( $increase_lifetime_value ) && is_numeric( $increase_lifetime_value ) ){ $customer->increase_value( $increase_lifetime_value ); } if( ! empty( $customer_notes ) ){ if( WPWHPRO()->helpers->is_json( $customer_notes ) ){ $customer_notes_arr = json_decode( $customer_notes, true ); foreach( $customer_notes_arr as $snote ){ $customer->add_note( $snote ); } } } if( ! empty( $customer_meta ) ){ if( WPWHPRO()->helpers->is_json( $customer_meta ) ){ $customer_meta_arr = json_decode( $customer_meta, true ); foreach( $customer_meta_arr as $skey => $sval ){ if( ! empty( $skey ) ){ if( $sval == 'ironikus-delete' ){ $customer->delete_meta( $skey ); } else { $ident = 'ironikus-serialize'; if( is_string( $sval ) && substr( $sval , 0, strlen( $ident ) ) === $ident ){ $serialized_value = trim( str_replace( $ident, '', $sval ),' ' ); if( WPWHPRO()->helpers->is_json( $serialized_value ) ){ $serialized_value = json_decode( $serialized_value ); } $customer->update_meta( $skey, $serialized_value ); } else { $customer->update_meta( $skey, maybe_unserialize( $sval ) ); } } } } } } $return_args['customer_id'] = $customer_id; $return_args['get_customer_by'] = $get_customer_by; $return_args['customer_value'] = $customer_value; $return_args['customer_email'] = $customer_email; $return_args['additional_emails'] = $additional_emails; $return_args['customer_first_name'] = $customer_first_name; $return_args['customer_last_name'] = $customer_last_name; $return_args['attach_payments'] = $attach_payments; $return_args['increase_purchase_count'] = $increase_purchase_count; $return_args['increase_lifetime_value'] = $increase_lifetime_value; $return_args['customer_notes'] = $customer_notes; $return_args['customer_meta'] = $customer_meta; $return_args['user_id'] = $user_id; $return_args['create_if_none'] = $create_if_none; $return_args['msg'] = WPWHPRO()->helpers->translate( "The user was successfully updated.", 'action-edd_update_customer-success' ); $return_args['success'] = true; } else { $return_args['msg'] = WPWHPRO()->helpers->translate( "We could not update the customer since we did not find any customer id.", 'action-edd_update_customer-success' ); } if( ! empty( $do_action ) ){ do_action( $do_action, $customer_id, $return_args ); } return $return_args; } } endif; // End if class_exists check.
[-] edd_update_download.php
[edit]
[-] edd_create_customer.php
[edit]
[-] edd_renew_license.php
[edit]
[-] edd_delete_customer.php
[edit]
[-] edd_delete_subscription.php
[edit]
[-] edd_delete_payment.php
[edit]
[-] index.php
[edit]
[-] edd_create_subscription.php
[edit]
[+]
..
[-] edd_delete_discount.php
[edit]
[-] edd_update_customer.php
[edit]
[-] edd_update_payment.php
[edit]
[-] edd_create_discount.php
[edit]
[-] edd_create_download.php
[edit]
[-] edd_update_license.php
[edit]
[-] edd_delete_download.php
[edit]
[-] edd_create_payment.php
[edit]
[-] edd_update_discount.php
[edit]
[-] edd_delete_license.php
[edit]
[-] edd_create_license.php
[edit]
[-] edd_update_subscription.php
[edit]