Automattic\WooCommerce\Internal\Admin\Settings

SettingsUIRequestContext::get_script_handlespublicWC 1.0

Get extension script handles for this context.

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

Хуков нет.

Возвращает

Строку[].

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

$SettingsUIRequestContext = new SettingsUIRequestContext();
$SettingsUIRequestContext->get_script_handles(): array;

Код SettingsUIRequestContext::get_script_handles() WC 10.9.1

public function get_script_handles(): array {
	if ( ! $this->script_handles_resolved ) {
		$this->resolve_script_handles();
	}

	return $this->script_handles;
}