WC_Plugin_Updates::get_extensions_modal_warning
Get the warning notice for the modal window.
Method of the class: WC_Plugin_Updates{}
No Hooks.
Returns
String.
Usage
// protected - for code of main (parent) or child class $result = $this->get_extensions_modal_warning();
WC_Plugin_Updates::get_extensions_modal_warning() WC Plugin Updates::get extensions modal warning code WC 10.8.1
protected function get_extensions_modal_warning() {
$version_parts = explode( '.', $this->new_version );
$new_version = $version_parts[0] . '.0';
$plugins = $this->major_untested_plugins;
ob_start();
include __DIR__ . '/views/html-notice-untested-extensions-modal.php';
return ob_get_clean();
}