# sellkit/1.3.2/includes/elementor/modules/accept-reject-button/module.php

SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster, version 1.3.2. 15 lines.

- Page: https://pluginprobe.com/plugins/sellkit/1.3.2/code/includes/elementor/modules/accept-reject-button/module.php
- Raw: https://pluginprobe.com/plugins/sellkit/1.3.2/raw/includes/elementor/modules/accept-reject-button/module.php
- Modified: 2022-10-31T08:54:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sellkit/1.3.2/code/includes/elementor/modules/accept-reject-button/module.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || die();

class Sellkit_Elementor_Accept_Reject_Button_Module extends Sellkit_Elementor_Base_Module {

	public static function is_active() {
		return function_exists( 'WC' );
	}

	public function get_widgets() {
		return [ 'accept-reject-button' ];
	}
}

```
