wpcf7_load_integration_page()
Хуки из функции
Возвращает
null
. Ничего (null).
Использование
wpcf7_load_integration_page();
Код wpcf7_load_integration_page() wpcf7 load integration page CF7 5.9.8
function wpcf7_load_integration_page() { do_action( 'wpcf7_admin_load', trim( $_GET['page'] ?? '' ), wpcf7_current_action() ); $integration = WPCF7_Integration::get_instance(); if ( isset( $_REQUEST['service'] ) and $integration->service_exists( $_REQUEST['service'] ) ) { $service = $integration->get_service( $_REQUEST['service'] ); $service->load( wpcf7_current_action() ); } $help_tabs = new WPCF7_Help_Tabs( get_current_screen() ); $help_tabs->set_help_tabs( 'integration' ); }