📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 15:36:11
📂
/ (Root)
/
home
/
apkbfjox
/
joygame.com.pk
/
wp-content
/
plugins
/
kadence-blocks
/
includes
/
resources
/
Uplink
📍 /home/apkbfjox/joygame.com.pk/wp-content/plugins/kadence-blocks/includes/resources/Uplink
🔄 Refresh
✏️
Editing: Uplink_Provider.php
Writable
<?php declare( strict_types=1 ); namespace KadenceWP\KadenceBlocks\Uplink; use KadenceWP\KadenceBlocks\StellarWP\ProphecyMonorepo\Container\Contracts\Provider; final class Uplink_Provider extends Provider { /** * Uplink library related functionality. * * @return void */ public function register(): void { $this->register_multisite_configuration(); } /** * Store tokens/license keys at the network level if the "kadence individual multisites" setting is disabled. * * @return void */ private function register_multisite_configuration(): void { add_action( 'init', static function(): void { $network_enabled = kadence_blocks_is_network_authorize_enabled(); add_filter( 'stellarwp/uplink/kadence-blocks/allows_network_subfolder_license', static function () use ( $network_enabled ): bool { return $network_enabled; }, 10 ); add_filter( 'stellarwp/uplink/kadence-blocks/allows_network_subdomain_license', static function () use ( $network_enabled ): bool { return $network_enabled; }, 10 ); add_filter( 'stellarwp/uplink/kadence-blocks/allows_network_domain_mapping_license', static function () use ( $network_enabled ): bool { return $network_enabled; }, 10 ); } ); } }
💾 Save Changes
❌ Cancel