Automattic\WooCommerce\Internal\Admin\Settings

SettingsUISchema::get_default_groupprivate staticWC 1.0

Get the default group.

Метод класса: SettingsUISchema{}

Хуков нет.

Возвращает

Массив.

Использование

$result = SettingsUISchema::get_default_group( $order ): array;
$order(int) (обязательный)
Group order.

Код SettingsUISchema::get_default_group() WC 10.9.1

private static function get_default_group( int $order ): array {
	return array(
		'id'          => self::DEFAULT_GROUP_ID,
		'title'       => '',
		'description' => '',
		'actions'     => array(),
		'order'       => $order,
		'fields'      => array(),
	);
}