PluginProbe
LoginPress | wp-login Custom Login Page Customizer / trunk
LoginPress | wp-login Custom Login Page Customizer vtrunk
6.2.5 6.2.4 6.2.3 6.2.2 6.2.1 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.3 1.0.4 All 118 releases
loginpress / lib / wpb-sdk / config.php

config.php in LoginPress | wp-login Custom Login Page Customizer trunk, at lib/wpb-sdk/config.php

30 lines 761 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * WPBrigade SDK path and API constants.
4 *
5 * @package wpbrigade_sdk
6 */
7
8 if ( ! defined( 'WPBRIGADE_SDK_VERSION' ) ) {
9 define( 'WPBRIGADE_SDK_VERSION', '3.3.1' );
10 }
11
12 if ( ! defined( 'WPBRIGADE_SDK_DIR' ) ) {
13 define( 'WPBRIGADE_SDK_DIR', __DIR__ );
14 }
15
16 if ( ! defined( 'WPBRIGADE_SDK_DIR_PATH' ) ) {
17 define( 'WPBRIGADE_SDK_DIR_PATH', plugin_dir_path( __FILE__ ) );
18 }
19
20 if ( ! defined( 'WPBRIGADE_SDK_DIR_INCLUDES' ) ) {
21 define( 'WPBRIGADE_SDK_DIR_INCLUDES', WPBRIGADE_SDK_DIR . '/includes' );
22 }
23 if ( ! defined( 'WPBRIGADE_SDK_API_ENDPOINT' ) ) {
24 define( 'WPBRIGADE_SDK_API_ENDPOINT', 'https://app.telemetry.wpbrigade.com/api/v2' );
25 }
26
27 if ( ! defined( 'WPBRIGADE_SDK_DIR_SDK' ) ) {
28 define( 'WPBRIGADE_SDK_DIR_SDK', WPBRIGADE_SDK_DIR_INCLUDES );
29 }
30