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_license' ) ) : /** * Load the edd_update_license action * * @since 4.2.0 * @author Ironikus <info@ironikus.com> */ class WP_Webhooks_Integrations_edd_Actions_edd_update_license { public function is_active(){ $is_active = class_exists( 'EDD_Software_Licensing' ); //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_license-description"; $parameter = array( 'license_id' => array( 'required' => true, 'short_description' => WPWHPRO()->helpers->translate( '(Mixed) The license id or the license key of the license you would like to update. Please see the description for further details.', $translation_ident ) ), 'download_id' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) The id of the download you want to associate with the license. Please see the description for further details.', $translation_ident ) ), 'payment_id' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) The id of the payment you want to associate with the license. Please see the description for further details.', $translation_ident ) ), 'license_key' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) A new license key for the susbcription. Please see the description for further details.', $translation_ident ) ), 'price_id' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) In case you work with multiple pricing options (variations) within the same product, please set the pricing id here. Please see the description for further details.', $translation_ident ) ), 'cart_index' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) The numerical index in the cart items array of the product the license key is associated with. Please see the description for further details.', $translation_ident ) ), 'status' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The status of the given license. Please see the description for further details.', $translation_ident ) ), 'parent_license_id' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) Set the parent id of this license in case you want to use this license as a child license. Please see the description for further details.', $translation_ident ) ), 'activation_limit' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) A number representing the amount of possible activations at the same time. set it to 0 for unlimited activations. Please see the description for further details.', $translation_ident ) ), 'date_created' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) In case you want to customize the creation date, you can define the date here. Please see the description for further details.', $translation_ident ) ), 'expiration_date' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) In case you want to customize the expiration date, you can define the date here. Otherwise it will be calculated based on the added product. Please see the description for further details.', $translation_ident ) ), 'manage_sites' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) A JSON formatted string containing one or multiple site urls. Please see the description for further details.', $translation_ident ) ), 'logs' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) A JSON formatted string containing one or multiple logs. Please see the description for further details.', $translation_ident ) ), 'license_meta' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) A JSON formatted string containing one or multiple meta values. Please see the description for further details.', $translation_ident ) ), 'license_action' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) Do additional, native actions using the license. Please see the description for further details.', 'action-edd_create_license-content' ) ), 'do_action' => array( 'short_description' => WPWHPRO()->helpers->translate( 'Advanced: Register a custom action after WP Webhooks fires this webhook. More info is within 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." )', $translation_ident ) ), 'data' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Array) Containing the license id, as well as the license key and other arguments set during the update of the license.', $translation_ident ) ), ); $returns_code = array ( 'success' => true, 'msg' => 'The license was successfully updated.', 'data' => array ( 'license_id' => 17, 'download_id' => 176, 'payment_id' => 711, 'price_id' => '2', 'cart_index' => 0, 'license_options' => array ( 'download_id' => 176, 'payment_id' => 711, 'price_id' => '2', 'expiration' => 1621690140, 'customer_id' => '1', 'user_id' => '1', ), 'license_meta' => '{ "meta_5": "test5", "meta_6": "ironikus-serialize{\\"test_key\\":\\"wow\\",\\"testval\\":\\"new\\"}" }', 'license_key' => 'e5e52aa45bb0e7c82a471e8234f6e427', 'logs' => '[ { "title": "Log 5", "message": "This is my description for log 1" }, { "title": "Log 6", "message": "This is my description for log 2", "type": null } ]', ), ); ob_start(); ?> <?php echo WPWHPRO()->helpers->translate( "This webhook action is used to update a license 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_license</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_license</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_license</strong>.", $translation_ident ); ?></li> <li><?php echo WPWHPRO()->helpers->translate( "It is also required to set the <strong>license_id</strong> argument. You can set it to either the license id or the license key.", $translation_ident ); ?></li> <li><?php echo WPWHPRO()->helpers->translate( "All the other arguments are optional and just extend the creation of the EDD license.", $translation_ident ); ?></li> </ol> <br><br> <h4><?php echo WPWHPRO()->helpers->translate( "Tipps", $translation_ident ); ?></h4> <ol> <li><?php echo WPWHPRO()->helpers->translate( "In case you would like to set the license to a lifetime validity, simply set the <strong>expiration_date</strong> argument to <strong>0</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( "license_id", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "This argument accepts either the numeric license id or the license key that was set for the license. E.g. 4fc336680bf576cc0298777278ceb15a", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "download_id", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "The download id of the download (product) you want to relate with the license. Please note that the product needs to have licensing activated.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "payment_id", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "The payment id of the payment you want to relate with the license. It will be used to assign the user to the license, as well as the customer.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "license_key", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "This argument allows you to update the license key for the given license. Alternatively, you can also set the argument value to <strong>regenerate</strong> to automatically regenerte the license key.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "price_id", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "In case you work with pricing options (variations) for your downloads, use this argument to set the pricing id of the variation price. The pricing id is called <strong>Download file ID</strong> on the edit-download page.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "cart_index", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "The identifier of the given download within the cart array. You can use this argument to associate the license with a specifc product wiithin the payment.", $translation_ident ); ?> <br> <hr> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "parent_license_id", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "Use this argument to set a parent license for the updated license.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "activation_limit", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "In case you would like to customize the licensing slots for your license (the amount of wesbites that can be added), you can use this argument. Please set it to e.g. 20 to allow 20 licensing slots. If you set this argument to 0, the license will contain unlimited license slots.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "date_created", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "You can use this argument to customize the creation date. It allows you to set most kind of date formats, but we suggest you using the SQL format: 2021-05-25 11:11:11", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "expiration_date", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "You can use this argument to customize the expiration date. It allows you to set most kind of date formats, but we suggest you using the SQL format: 2021-05-25 11:11:11. If you would like to never expire the license, set this argument to <strong>0</strong>.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "manage_sites", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "Use this argument to add and/or remove sites on a license. It accepts a JSON formatted string containg the site URLs. Here is an example:", $translation_ident ); ?> <pre>[ "https://demo.com", "https://demo.demo", "remove:https://demo3.demo" ]</pre> <?php echo WPWHPRO()->helpers->translate( "The example above adds two new site URLs. It also removes one site URL. To remove a site URL, please place <strong>remove:</strong> in front of the site URL.", $translation_ident ); ?> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "logs", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "Use this argument to add one or multiple log entries to the license. This value accepts a JSON formated string. Here is an example:", $translation_ident ); ?> <pre>[ { "title": "Log 1", "message": "This is my description for log 1" }, { "title": "Log 2", "message": "This is my description for log 2", "type": null } ]</pre> <?php echo WPWHPRO()->helpers->translate( "The example above adds two logs. The <strong>type</strong> key can contain a single term slug, single term id, or array of either term slugs or ids. For further details on the type key, please check out the \$terms variable within the wp_set_object_terms() function:", $translation_ident ); ?> <a href="https://developer.wordpress.org/reference/functions/wp_set_object_terms/" target="_blank">https://developer.wordpress.org/reference/functions/wp_set_object_terms/</a> <br> <hr> <h5><?php echo WPWHPRO()->helpers->translate( "license_meta_arr", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "This argument allows you to add/update or remove one or multiple license meta values to your newly created license, 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 meta values", $translation_ident ); ?></strong> <br> <?php echo WPWHPRO()->helpers->translate( "This JSON shows you how to add simple meta values for your license.", $translation_ident ); ?> <pre>{ "meta_1": "test1", "meta_2": "test2" }</pre> <?php echo WPWHPRO()->helpers->translate( "The key is always the license meta key. On the right, you always have the value for the license meta value. In this example, we add two meta values to the license 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/remove 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( "license_action", $translation_ident ); ?></h5> <?php echo WPWHPRO()->helpers->translate( "This argument allows you to fire further native features of the licensing class. Please find further details down below:", $translation_ident ); ?> <ul class="list-group list-group-flush"> <li class="list-group-item"> <strong><?php echo WPWHPRO()->helpers->translate( "Enable licenses", $translation_ident ); ?></strong> <br> <?php echo WPWHPRO()->helpers->translate( "This value allows you to enable the license and all of its child licenses. It does it by checking on the activation count and if some sites are active, it will set the license to <strong>active</strong>, otherwise it will set it to <strong>inactive</strong>.", $translation_ident ); ?> <pre>enable</pre> </li> <li class="list-group-item"> <strong><?php echo WPWHPRO()->helpers->translate( "Disable licenses", $translation_ident ); ?></strong> <br> <?php echo WPWHPRO()->helpers->translate( "This value allows you to disable the license and all of its child licenses. It will set the license to <strong>disabled</strong>.", $translation_ident ); ?> <pre>disable</pre> </li> </ul> <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 edd_update_license action was fired.", $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, 3 ); function my_custom_callback_function( $license_id, $license, $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>$license_id</strong> (Integer) <br> <?php echo WPWHPRO()->helpers->translate( "Contains the id of the newly created license.", $translation_ident ); ?> </li> <li> <strong>$license</strong> (integer) <br> <?php echo WPWHPRO()->helpers->translate( "Contains the EDD_SL_License() object of the license.", $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.", $translation_ident ); ?> </li> </ol> <?php $description = ob_get_clean(); return array( 'action' => 'edd_update_license', 'name' => WPWHPRO()->helpers->translate( 'Update license', $translation_ident ), 'sentence' => WPWHPRO()->helpers->translate( 'update a license', $translation_ident ), 'parameter' => $parameter, 'returns' => $returns, 'returns_code' => $returns_code, 'short_description' => WPWHPRO()->helpers->translate( 'This webhook action allows you to update a license within Easy Digital Downloads - Software Licensing.', $translation_ident ), 'description' => $description, 'integration' => 'edd', 'premium' => false, ); } public function execute( $return_data, $response_body ){ $license_id = 0; $return_args = array( 'success' => false, 'msg' => '', 'data' => array( 'license_id' => 0, 'license_key' => 0, 'download_id' => 0, 'payment_id' => 0, 'price_id' => false, 'cart_index' => 0, 'license_options' => array(), 'license_meta' => array(), ), ); $license_id = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'license_id' ); $license_key = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'license_key' ); $download_id = intval( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'download_id' ) ); $payment_id = intval( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'payment_id' ) ); $price_id = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'price_id' ); $status = intval( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'status' ) ); $cart_index = intval( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'cart_index' ) ); $date_created = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'date_created' ); $parent_license_id = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'parent_license_id' ); $activation_limit = intval( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'activation_limit' ) ); $expiration_date = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'expiration_date' ); $manage_sites = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'manage_sites' ); $logs = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'logs' ); $license_meta = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'license_meta' ); $license_action = intval( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'license_action' ) ); $do_action = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'do_action' ); if( ! class_exists( 'EDD_SL_License' ) ){ $return_args['msg'] = WPWHPRO()->helpers->translate( 'The class EDD_SL_License() does not exist. The license was not created.', 'action-edd_update_license-failure' ); return $return_args; } if( ! class_exists( 'EDD_Payment' ) ){ $return_args['msg'] = WPWHPRO()->helpers->translate( 'The class EDD_Payment() does not exist. The license was not created.', 'action-edd_update_license-failure' ); return $return_args; } if( empty( $license_id ) ){ $return_args['msg'] = WPWHPRO()->helpers->translate( 'The license_id argument cannot be empty. The license was not updated.', 'action-edd_update_license-failure' ); return $return_args; } $payment = new EDD_Payment( $payment_id ); $license = new EDD_SL_License( $license_id ); if( empty( $price_id ) ){ $price_id = null; } $license_options = array(); if( ! empty( $license_key ) && $license_key !== 'regenerate' ){ $license_options['license_key'] = $license_key; } if( ! empty( $download_id ) ){ $license_options['download_id'] = $download_id; } if( ! empty( $payment_id ) ){ $license_options['payment_id'] = $payment_id; } if( ! empty( $price_id ) ){ $license_options['price_id'] = $price_id; } if( ! empty( $status ) ){ $license_options['status'] = $status; } if( ! empty( $cart_index ) ){ $license_options['cart_index'] = $cart_index; } if( ! empty( $date_created ) ){ $license_options['date_created'] = date("Y-m-d H:i:s", strtotime( $date_created ) ); } if( ! empty( $expiration_date ) ){ $license_options['expiration'] = strtotime( $expiration_date ); } else { if( intval( $expiration_date ) === 0 ){ $license_options['expiration'] = 0; //make it lifetime } } if( ! empty( $parent_license_id ) ){ $license_options['parent'] = date("Y-m-d H:i:s", strtotime( $parent_license_id ) ); } if( ! empty( $payment ) ){ $license_options['customer_id'] = $payment->customer_id; $license_options['user_id'] = $payment->user_id; } $check = $license->update( $license_options ); if( $check ){ if( $license_key === 'regenerate' ){ $license->regenerate_key(); } //Make sure we set again the activation limit since by default it was not set properly if( ! empty( $activation_limit ) || $activation_limit === 0 ){ $license->update_meta( '_edd_sl_limit', $activation_limit ); } if( ! empty( $logs ) ){ if( WPWHPRO()->helpers->is_json( $logs ) ){ $logs_arr = json_decode( $logs, true ); foreach( $logs_arr as $slog ){ $title = WPWHPRO()->settings->get_page_title(); if( isset( $slog['title'] ) && ! empty( $slog['title'] ) ){ $title = $slog['title']; } $message = ''; if( isset( $slog['message'] ) && ! empty( $slog['message'] ) ){ $message = $slog['message']; } $type = null; if( isset( $slog['type'] ) && ! empty( $slog['type'] ) ){ $type = $slog['type']; } $license->add_log( $title, $message, $type ); } } } if( ! empty( $manage_sites ) ){ if( WPWHPRO()->helpers->is_json( $manage_sites ) ){ $manage_sites_arr = json_decode( $manage_sites, true ); foreach( $manage_sites_arr as $site ){ $ident = 'remove:'; if( is_string( $site ) && substr( $site , 0, strlen( $ident ) ) === $ident ){ $saction = 'remove'; $site = str_replace( $ident, '', $site ); } else { $saction = 'add'; } switch( $saction ){ case 'remove': $license->remove_site( $site ); break; case 'add': default: $license->add_site( $site ); break; } } } } if( ! empty( $license_meta ) ){ if( WPWHPRO()->helpers->is_json( $license_meta ) ){ $license_meta_arr = json_decode( $license_meta, true ); foreach( $license_meta_arr as $skey => $sval ){ if( ! empty( $skey ) ){ if( $sval == 'ironikus-delete' ){ $license->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 ); } $license->update_meta( $skey, $serialized_value ); } else { $license->update_meta( $skey, maybe_unserialize( $sval ) ); } } } } } } if( ! empty( $license_action ) ){ switch( $license_action ){ case 'enable': $license->enable(); break; case 'disable': $license->disable(); break; } } $new_fetched_license = new EDD_SL_License( $license->ID ); $license_id = $license->ID; $return_args['msg'] = WPWHPRO()->helpers->translate( "The license was successfully updated.", 'action-edd_update_license-success' ); $return_args['success'] = true; $return_args['data']['license_id'] = $license->ID; $return_args['data']['license_key'] = $new_fetched_license->license_key; $return_args['data']['download_id'] = $download_id; $return_args['data']['payment_id'] = $payment_id; $return_args['data']['price_id'] = $price_id; $return_args['data']['cart_index'] = $cart_index; $return_args['data']['license_options'] = $license_options; $return_args['data']['license_meta'] = $license_meta; $return_args['data']['logs'] = $logs; } else { $return_args['msg'] = WPWHPRO()->helpers->translate( "Error updating the license.", 'action-edd_update_license-success' ); } if( ! empty( $do_action ) ){ do_action( $do_action, $license_id, $license, $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]