# extendify/3.1.0/app/Constants.php

Extendify, version 3.1.0. 24 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.0/code/app/Constants.php
- Raw: https://pluginprobe.com/plugins/extendify/3.1.0/raw/app/Constants.php
- Modified: 2026-05-19T15:40:58+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.1.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
}

```
