wpcf7_load_integration_page()CF7 1.0

Хуки из функции

Возвращает

null. Ничего (null).

Использование

wpcf7_load_integration_page();

Код wpcf7_load_integration_page() CF7 6.1.6

function wpcf7_load_integration_page() {
	do_action( 'wpcf7_admin_load',
		wpcf7_superglobal_get( 'page' ),
		wpcf7_current_action()
	);

	$integration = WPCF7_Integration::get_instance();

	if (
		$service_name = wpcf7_superglobal_request( 'service' ) and
		$integration->service_exists( $service_name )
	) {
		$service = $integration->get_service( $service_name );
		$service->load( wpcf7_current_action() );
	}

	$help_tabs = new WPCF7_Help_Tabs( get_current_screen() );
	$help_tabs->set_help_tabs( 'integration' );
}