WC_Plugin_Updates::get_extensions_modal_warning()
Get the warning notice for the modal window.
Description Description
Return Return
(string)
Source Source
File: includes/admin/plugin-updates/class-wc-plugin-updates.php
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 'views/html-notice-untested-extensions-modal.php';
return ob_get_clean();
}