# extendify/3.2.0/app/Constants.php

Extendify, version 3.2.0. 41 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.2.0/code/app/Constants.php
- Raw: https://pluginprobe.com/plugins/extendify/3.2.0/raw/app/Constants.php
- Modified: 2026-07-08T14:57:26+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/extendify/3.2.0/code/app/Constants.php#L10-L20`.

```php
<?php

/**
 * Build-time URL rewrites (.github/workflows/build-*-zip.yml) target this file,
 * so any new PHP code that consumes these constants inherits the override.
 */

namespace Extendify;

defined('ABSPATH') || die('No direct access.');

class Constants
{
    // Plugin requires PHP 7.0; constant visibility modifiers are PHP 7.1+.
    // phpcs:disable PSR12.Properties.ConstantVisibility.NotFound
    const AI_HOST = 'https://ai.extendify.com';
    const PATTERNS_HOST = 'https://patterns.extendify.com';
    const KB_HOST = 'https://kb.extendify.com';
    const INSIGHTS_HOST = 'https://insights.extendify.com';
    const IMAGES_HOST = 'https://images-resource.extendify.com';
    const DASHBOARD_HOST = 'https://dashboard.extendify.com';
    // phpcs:enable PSR12.Properties.ConstantVisibility.NotFound

    /**
     * All Extendify service base URLs.
     *
     * @return string[]
     */
    public static function serviceUrls()
    {
        return [
            self::AI_HOST,
            self::PATTERNS_HOST,
            self::KB_HOST,
            self::INSIGHTS_HOST,
            self::IMAGES_HOST,
            self::DASHBOARD_HOST,
        ];
    }
}

```
