Automattic\WooCommerce\Internal\Admin\RemoteFreeExtensions
ProcessCoreProfilerPluginInstallOptions::process_install_options
Process install options based on a filtering function.
Метод класса: ProcessCoreProfilerPluginInstallOptions{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$ProcessCoreProfilerPluginInstallOptions = new ProcessCoreProfilerPluginInstallOptions(); $ProcessCoreProfilerPluginInstallOptions->process_install_options();
Код 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 );
}
}