get_prohibited_active_constants();
$html = '';
if (in_array('DISABLE_WP_CRON', $prohibited_active_constants)) {
$html .= sprintf('
%s: %s', 'DISABLE_WP_CRON', esc_html__('This constant prevents automatic updates scheduled tasks from being run within WordPress internal cron.', 'stops-core-theme-and-plugin-updates')." ".esc_html__('Typically, when enabled, automatic updates events are checked on every page load and any events due to run will be called during that page load.', 'stops-core-theme-and-plugin-updates')." ".esc_html__("However, if it's intentionally being set because you use external cron (server cron) then you can ignore this warning.", 'stops-core-theme-and-plugin-updates'));
}
$html = !empty($html) ? '' : $html;
if (empty($html)) return;
?>