PluginProbe
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) / trunk
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) vtrunk
9.1.2 9.1.1 9.1.0 9.0.2 9.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 All 153 releases
wp-analytify / lib / wpb-sdk / config.php

config.php in Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) 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