WC_Settings_Advanced::get_settings_for_blueprint_section()protectedWC 1.0

Get settings for the Blueprint section.

Method of the class: WC_Settings_Advanced{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_settings_for_blueprint_section();

WC_Settings_Advanced::get_settings_for_blueprint_section() code WC 9.5.1

protected function get_settings_for_blueprint_section() {
	$settings =
		array(
			array(
				'title' => esc_html__( 'Blueprint', 'woocommerce' ),
				'type'  => 'title',
			),
			array(
				'id'   => 'wc_settings_blueprint_slotfill',
				'type' => 'slotfill_placeholder',
			),
		);

	return $settings;
}