# windpress/3.0.3/constant.php

WindPress – Tailwind CSS integration for WordPress, version 3.0.3. 66 lines.

- Page: https://pluginprobe.com/plugins/windpress/3.0.3/code/constant.php
- Raw: https://pluginprobe.com/plugins/windpress/3.0.3/raw/constant.php
- Modified: 2024-08-28T04:00:22+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/3.0.3/code/constant.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 WindPressPackages;

/**
 * Plugin constants.
 *
 * @since 3.0.0
 */
class WIND_PRESS
{
    /**
     * @var string
     */
    public const FILE = __DIR__ . '/windpress.php';
    /**
     * @var string
     */
    public const VERSION = '3.0.3';
    /**
     * @var string
     */
    public const WP_OPTION = 'windpress';
    /**
     * @var string
     */
    public const DB_TABLE_PREFIX = 'windpress';
    /**
     * The text domain should use the literal string 'windpress' as the text domain.
     * This constant is used for reference only and should not be used as the actual text domain.
     *
     * @var string
     */
    public const TEXT_DOMAIN = 'windpress';
    /**
     * @var array
     */
    public const EDD_STORE = [
        'store_url' => 'https://rosua.org',
        'item_id' => 2250,
        // WindPress or Yabe Siul
        'author' => 'idrosua',
    ];
    /**
     * @var string
     */
    public const REST_NAMESPACE = 'windpress/v1';
    public const DATA_DIR = '/windpress/data/';
    public const CACHE_DIR = '/windpress/cache/';
}
/**
 * Plugin constants.
 *
 * @since 3.0.0
 */
\class_alias('WindPressPackages\\WIND_PRESS', 'WIND_PRESS', \false);

```
