SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > updraftplus > includes > checkout-embed


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins/updraftplus/includes/checkout-embed

NameTypeSizeLast ModifiedActions
assets Directory - -
class-udp-checkout-embed.php File 4305 bytes August 09 2023 18:48:00.
products.json File 2 bytes April 17 2025 13:45:08.
readme.md File 1883 bytes July 06 2023 16:16:56.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins/updraftplus/includes/checkout-embed/readme.md

# Embed the plugin's checkout page

## To use in a new plugin:

- Include and instantiate `Updraft_Checkout_Embed`

```php
if (!class_exists('Updraft_Checkout_Embed')) include_once (UPDRAFTPLUS_DIR.'/includes/checkout-embed/class-udp-checkout-embed.php');
global $udp_checkout_embed;
$udp_checkout_embed = new Updraft_Checkout_Embed(
	'updraftplus'
	$data_url, 
	$load_in_pages
);
```

### Params:
- $plugin_name: (string) Current plugin using the class
- $proructs_data_url: (string) url of the merchand website (eg: https://https://updraftplus.com)
- $load_in_pages: (array) pages on which the script + css will be loaded

### Cache:
The products data is cached and expires after 7 days. To force fetching it, add `udp-force-product-list-refresh=1` to the admin page url

## Using in the admin

- Once the php is setup, you can configure the links / buttons in the admin.

Add `data-embed-checkout="{$url}"` to any link. eg: 

```php
global $updraftplus_checkout_embed;

$link_data_attr = $updraftplus_checkout_embed->get_product('updraftpremium') ? 'data-embed-checkout="'.apply_filters('updraftplus_com_link', $updraftplus_checkout_embed->get_product('updraftpremium')).'"' : '';

<a target="_blank" title="Upgrade to Updraft Premium" href="<?php echo apply_filters('updraftplus_com_link', "https://updraftplus.com/shop/updraftplus-premium/");?>" <?php echo $link_data_attr; ?>><?php _e('get it here', 'updraftplus');?></a>
```

- On completion (when the order is complete), the event 'udp/checkout/done' is triggered. 
- The event 'udp/checkout/close' is triggered when the user closes the modal, regardless of success.

Use this to do something with the data received:

```javascript
$(document).on('udp/checkout/done', function(event, data, $element) {
	// ... do something with data, currently data.email and data.order_number
	// $element clicked to open the modal.
});
```

SILENT KILLER Tool