# manage/trunk/modules/connect/classes/config.php

Manage – Centralized site maintenance and monitoring, version trunk. 23 lines.

- Page: https://pluginprobe.com/plugins/manage/trunk/code/modules/connect/classes/config.php
- Raw: https://pluginprobe.com/plugins/manage/trunk/raw/modules/connect/classes/config.php
- Modified: 2026-03-08T13:05:48+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/manage/trunk/code/modules/connect/classes/config.php#L10-L20`.

```php
<?php
namespace Manage\Modules\Connect\Classes;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

/**
 * Class Config
 */
class Config {
	const APP_NAME = 'manage';
	const APP_PREFIX = 'manage';
	const APP_REST_NAMESPACE = 'manage/v1';
	const PLUGIN_SLUG = 'manage';
	const BASE_URL = 'https://my.elementor.com/connect';
	const ADMIN_PAGE = 'manage-settings';
	const APP_TYPE = 'app_manage';
	const SCOPES = 'openid offline_access share_usage_data';
	const STATE_NONCE = 'manage_auth_nonce';
	const CONNECT_MODE = 'site';
}

```
