# tier-pricing-table/8.0.2/src/Integrations/Plugins/Elementor/ElementorIntegration.php

Tiered Pricing Table for WooCommerce, version 8.0.2. 35 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/8.0.2/code/src/Integrations/Plugins/Elementor/ElementorIntegration.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/8.0.2/raw/src/Integrations/Plugins/Elementor/ElementorIntegration.php
- Modified: 2026-06-26T14:29:16+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/tier-pricing-table/8.0.2/code/src/Integrations/Plugins/Elementor/ElementorIntegration.php#L10-L20`.

```php
<?php namespace TierPricingTable\Integrations\Plugins\Elementor;

use Elementor\Plugin;
use TierPricingTable\Integrations\Plugins\PluginIntegrationAbstract;

class ElementorIntegration extends PluginIntegrationAbstract {
	
	public function getTitle(): string {
		return 'Elementor';
	}
	
	public function getDescription(): string {
		return __( 'Add a dedicated Elementor widget to display the tiered pricing table with customizable design options.',
			'tier-pricing-table' );
	}
	
	public function getSlug(): string {
		return 'elementor';
	}
	
	public function getIconURL(): string {
		return $this->getContainer()->getFileManager()->locateAsset( 'admin/integrations/elementor-icon.svg' );
	}
	
	public function getAuthorURL(): string {
		return 'https://wordpress.org/plugins/elementor/';
	}
	
	public function run() {
		add_action( 'elementor/widgets/widgets_registered', function () {
			Plugin::instance()->widgets_manager->register( new ElementorWidget() );
		} );
	}
}

```
