PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/eastfin/wp-content/plugins/really-simple-ssl/grid/templates/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //home/trave494/eastfin/wp-content/plugins/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 = '<span class="rsssl-progress-count">'.$open_task_count.'</span>';
                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>