HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.2.34
System: Linux atalantini.com 3.10.0-1127.13.1.el7.x86_64 #1 SMP Tue Jun 23 15:46:38 UTC 2020 x86_64
User: root (0)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: //opt/really-simple-ssl/grid/templates/progress.php
<?php defined('ABSPATH') or die("you do not have access to this page!"); ?>

<?php
	$percentage_completed = RSSSL()->really_simple_ssl->get_score_percentage();
	$lowest_possible_task_count = RSSSL()->really_simple_ssl->get_lowest_possible_task_count();
?>

<div class="rsssl-progress-block">
    <div class="rsssl-progress-bar-text">
        <div class="progress-bar-container">
            <div class="progress">
                <div class="bar" style="width:<?php echo $percentage_completed?>%"></div>
            </div>
        </div>

        <div class="progress-text">
            <span class="rsssl-progress-percentage">
                <?php echo $percentage_completed?>%
            </span>
            <span class="rsssl-progress-text">
                <?php
                $open_task_count = RSSSL()->really_simple_ssl->get_remaining_tasks_count();
                $open_tasks_html = '<div class="rsssl-progress-count">'.$open_task_count.'</div>';
                if (RSSSL()->really_simple_ssl->ssl_enabled) {
	                $doing_well = __( "SSL is activated on your site.",  'really-simple-ssl' ) . ' ' . sprintf( _n( "You still have %s task open.", "You still have %s tasks open.", $open_task_count, 'really-simple-ssl' ), $open_tasks_html );

	                if ( $open_task_count === 0 ) {
		                _e("SSL configuration finished!", "really-simple-ssl");
	                } elseif ( !defined('rsssl_pro_version') ){
                		if ( $open_task_count >= $lowest_possible_task_count) {
			                echo $doing_well;
		                } else {
			                printf(__("Basic SSL configuration finished! Improve your score with %sReally Simple SSL Pro%s.", "really-simple-ssl"), '<a target="_blank" href="' . RSSSL()->really_simple_ssl->pro_url . '">', '</a>');
		                }
	                } else {
		                echo $doing_well;
	                }
                } else {
                	if ( !is_network_admin() ) _e("SSL is not yet enabled on this site." , "really-simple-ssl");
                }
                do_action('rsssl_progress_feedback');
                ?>
            </span>
        </div>
    </div>

	<div class="rsssl-scroll-container rsssl-task-list">
        <table class="rsssl-progress-table">
        <thead></thead>
			<tbody>
			<?php
			$notices = RSSSL()->really_simple_ssl->get_notices_list(array( 'status' => 'all' ));
            foreach ($notices as $id => $notice) {
                RSSSL()->really_simple_ssl->notice_row($id, $notice);
            }
			?>
			</tbody>
        </table>
	</div>
</div>