WC_Admin_Addons::get_section( string $section_id )

Get section for the addons screen.


Description Description


Parameters Parameters

$section_id

(Required) Required section ID.


Top ↑

Return Return

(object|bool)


Top ↑

Source Source

File: includes/admin/class-wc-admin-addons.php

	public static function get_section( $section_id ) {
		$sections = self::get_sections();
		if ( isset( $sections[ $section_id ] ) ) {
			return $sections[ $section_id ];
		}
		return false;
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.