WC_Helper_Compat::render_compat_menu()public staticWC 1.0

Render the legacy helper compat view.

Method of the class: WC_Helper_Compat{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_Helper_Compat::render_compat_menu();

WC_Helper_Compat::render_compat_menu() code WC 8.7.0

public static function render_compat_menu() {
	$helper_url = add_query_arg(
		array(
			'page'    => 'wc-addons',
			'section' => 'helper',
		),
		admin_url( 'admin.php' )
	);
	include WC_Helper::get_view_filename( 'html-helper-compat.php' );
}