Automattic\WooCommerce\Internal\Admin\RemoteFreeExtensions
ProcessCoreProfilerPluginInstallOptions::process_install_options
Process install options based on a filtering function.
Method of the class: ProcessCoreProfilerPluginInstallOptions{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ProcessCoreProfilerPluginInstallOptions = new ProcessCoreProfilerPluginInstallOptions(); $ProcessCoreProfilerPluginInstallOptions->process_install_options();
ProcessCoreProfilerPluginInstallOptions::process_install_options() ProcessCoreProfilerPluginInstallOptions::process install options code 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 );
}
}