jetpack
/
jetpack_vendor
/
automattic
/
jetpack-premium-analytics
/
src
/
class-connection-configuration.php
REST
2 weeks ago
Reports
1 week ago
Sync
2 weeks ago
class-analytics.php
2 days ago
class-capabilities.php
2 weeks ago
class-connection-configuration.php
2 weeks ago
class-dashboard-section-registry.php
2 weeks ago
class-dashboard-section.php
2 days ago
class-dashboard-support-routes.php
1 week ago
class-jetpack-stats-tracker.php
2 weeks ago
class-notices.php
2 weeks ago
class-widget-type-registry.php
2 weeks ago
class-widget-type.php
2 weeks ago
class-woocommerce-analytics-tracker.php
2 weeks ago
csv-exports.php
2 weeks ago
dashboard-grammar.php
2 weeks ago
dashboard-layout.php
2 days ago
dashboard-sections.php
2 days ago
rest-namespace.php
2 weeks ago
videopress-availability.php
2 days ago
widget-availability.php
2 days ago
widget-i18n.json
2 weeks ago
widget-modules.php
2 days ago
widget-type-support.php
2 days ago
widget-types.php
2 weeks ago
class-connection-configuration.php
39 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Jetpack Connection configuration. |
| 4 | * |
| 5 | * @package automattic/jetpack-premium-analytics |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\PremiumAnalytics; |
| 9 | |
| 10 | use Automattic\Jetpack\Config; |
| 11 | |
| 12 | /** |
| 13 | * Registers Premium Analytics as a consumer of the shared Jetpack Connection. |
| 14 | */ |
| 15 | class Connection_Configuration { |
| 16 | |
| 17 | /** |
| 18 | * Configure the shared Jetpack Connection for Premium Analytics. |
| 19 | * |
| 20 | * @return void |
| 21 | */ |
| 22 | public static function configure() { |
| 23 | $config = new Config(); |
| 24 | $config->ensure( 'connection', self::get_jetpack_connection_config() ); |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Get the Premium Analytics connection configuration. |
| 29 | * |
| 30 | * @return array Jetpack Connection config array. |
| 31 | */ |
| 32 | private static function get_jetpack_connection_config() { |
| 33 | return array( |
| 34 | 'slug' => defined( 'JETPACK_PREMIUM_ANALYTICS_SLUG' ) ? JETPACK_PREMIUM_ANALYTICS_SLUG : 'jetpack-premium-analytics', |
| 35 | 'name' => defined( 'JETPACK_PREMIUM_ANALYTICS_NAME' ) ? JETPACK_PREMIUM_ANALYTICS_NAME : 'Premium Analytics', |
| 36 | ); |
| 37 | } |
| 38 | } |
| 39 |