HEX
Server: Apache/2.4.66 (Debian)
System: Linux 6dfabc3b2241 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64
User: (1000)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/wpgraphql-acf/src/ThirdParty.php
<?php
namespace WPGraphQL\Acf;

class ThirdParty {

	/**
	 * Initialize support for 3rd party libraries / plugins
	 */
	public function init(): void {

		// initialize support for ACF Extended
		$acfe = new ThirdParty\AcfExtended\AcfExtended();
		$acfe->init();

		// Initialize support for WPGraphQL Smart Cache
		$smart_cache = new ThirdParty\WPGraphQLSmartCache\WPGraphQLSmartCache();
		$smart_cache->init();

		// Initialize support for WPGraphQL Content Blocks
		$content_blocks = new ThirdParty\WPGraphQLContentBlocks\WPGraphQLContentBlocks();
		$content_blocks->init();
	}
}