# windpress/trunk/src/Integration/IntegrationInterface.php

WindPress – Tailwind CSS integration for WordPress, version trunk. 25 lines.

- Page: https://pluginprobe.com/plugins/windpress/trunk/code/src/Integration/IntegrationInterface.php
- Raw: https://pluginprobe.com/plugins/windpress/trunk/raw/src/Integration/IntegrationInterface.php
- Modified: 2025-05-28T18:57:54+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/windpress/trunk/code/src/Integration/IntegrationInterface.php#L10-L20`.

```php
<?php

/*
 * This file is part of the WindPress package.
 *
 * (c) Joshua Gugun Siagian <suabahasa@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
declare (strict_types=1);
namespace WindPress\WindPress\Integration;

interface IntegrationInterface
{
    /**
     * Get the Integration name (slug).
     */
    public function get_name(): string;
    /**
     * Check if the Integration is enabled.
     */
    public function is_enabled(): bool;
}

```
