quotes_dlx_core_license_{action}

Perform a license action based on response/action.

After a license action has been executed, you can run custom code based on the action and response.

Location: php/Admin/Plugin_License.php

/**
 * Perform an action based on response/action.
 *
 * @since 1.0.0
 *
 * @param string $action   Can be: check_license, activate_license, deactivate_license
 * @param array  $response Response of the action.
 */
do_action( 'quotes_dlx_core_license_' . $action, $response );

Last updated