# storeengine/2.2.0/includes/interfaces/integration-interface.php

StoreEngine — Complete eCommerce Solution with Memberships, Licensing, Affiliates &amp; More, version 2.2.0. 20 lines.

- Page: https://pluginprobe.com/plugins/storeengine/2.2.0/code/includes/interfaces/integration-interface.php
- Raw: https://pluginprobe.com/plugins/storeengine/2.2.0/raw/includes/interfaces/integration-interface.php
- Modified: 2026-04-20T13:58:18+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/storeengine/2.2.0/code/includes/interfaces/integration-interface.php#L10-L20`.

```php
<?php
namespace StoreEngine\Interfaces;

interface IntegrationInterface {

	public function setup(): void;

	public function dispatch_hooks(): void;

	public function get_id(): string;

	public function get_label(): string;

	public function get_logo(): string;

	public function enabled(): bool;
}

// End of file integration-interface.php

```
