Jetpack_IDC::display_idc_notice PHP Method

display_idc_notice() public method

"Confirm Staging" - Dismiss the notice and continue on with our lives in staging mode. "Fix Jetpack Connection" - Will disconnect the site and start the mitigation...
public display_idc_notice ( )
    function display_idc_notice()
    {
        $classes = 'jp-idc-notice inline notice notice-warning';
        if ($this->admin_page_has_help_tabs()) {
            $classes .= ' has-help-tabs';
        }
        ?>
		<div class="<?php 
        echo $classes;
        ?>
">
			<?php 
        $this->render_notice_header();
        ?>
			<?php 
        $this->render_notice_first_step();
        ?>
			<?php 
        $this->render_notice_second_step();
        ?>
		</div>
	<?php 
    }