Automattic\WooCommerce\Internal\Admin\RemoteFreeExtensions

ProcessCoreProfilerPluginInstallOptions::process_install_optionspublicWC 1.0

Process install options based on a filtering function.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$ProcessCoreProfilerPluginInstallOptions = new ProcessCoreProfilerPluginInstallOptions();
$ProcessCoreProfilerPluginInstallOptions->process_install_options();

Код ProcessCoreProfilerPluginInstallOptions::process_install_options() WC 10.8.1

public function process_install_options() {
	$install_options = $this->get_install_options( $this->slug );
	if ( ! $install_options ) {
		return;
	}

	foreach ( $install_options as $install_option ) {
		$this->add_install_option( $install_option );
	}
}