WC_Settings_Advanced::get_settings_for_blueprint_sectionprotectedWC 1.0

Get settings for the Blueprint section.

Method of the class: WC_Settings_Advanced{}

No Hooks.

Returns

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 10.5.0

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

	return $settings;
}