PluginProbe
Manage – Centralized site maintenance and monitoring / trunk
Manage – Centralized site maintenance and monitoring vtrunk
1.0.9 1.0.8 1.0.7 1.0.6 1.0.5 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4
manage / modules / connect / classes / config.php

config.php in Manage – Centralized site maintenance and monitoring trunk, at modules/connect/classes/config.php

23 lines 546 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Manage\Modules\Connect\Classes;
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit; // Exit if accessed directly
6 }
7
8 /**
9 * Class Config
10 */
11 class Config {
12 const APP_NAME = 'manage';
13 const APP_PREFIX = 'manage';
14 const APP_REST_NAMESPACE = 'manage/v1';
15 const PLUGIN_SLUG = 'manage';
16 const BASE_URL = 'https://my.elementor.com/connect';
17 const ADMIN_PAGE = 'manage-settings';
18 const APP_TYPE = 'app_manage';
19 const SCOPES = 'openid offline_access share_usage_data';
20 const STATE_NONCE = 'manage_auth_nonce';
21 const CONNECT_MODE = 'site';
22 }
23