HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //home/cedarbrk/public_html/wp-content/plugins/really-simple-ssl/grid/templates/progress-footer.php
<?php defined('ABSPATH') or die("you do not have access to this page!"); ?>

<?php
if (RSSSL()->really_simple_ssl->ssl_enabled) {
	$ssl_enabled = "rsssl-dot-success";
	$ssl_text = __("SSL Activated", "really-simple-ssl");
} else {
	$ssl_enabled = "rsssl-dot-error";
	$ssl_text = __("SSL Not activated", "really-simple-ssl");
}

if (RSSSL()->really_simple_ssl->has_301_redirect()) {
	$redirect_301 = "rsssl-dot-success";
} else {
	$redirect_301 = "rsssl-dot-error";
}


$button_text = __("Go PRO!", "really-simple-ssl");
$button_link = RSSSL()->really_simple_ssl->pro_url;
$go_pro = "<a href='$button_link' target='_blank' class='button button-default upsell'>$button_text</a>";
$activate_btn = "";
if (!RSSSL()->really_simple_ssl->ssl_enabled) {
	if ( RSSSL()->really_simple_ssl->site_has_ssl || ( defined( 'RSSSL_FORCE_ACTIVATE' ) && RSSSL_FORCE_ACTIVATE ) ) {
		$button_text = __( "Activate SSL", "really-simple-ssl" );
		$activate_btn = '<form action="" method="post" ><input type="submit" class="button button-primary" value="' . $button_text . '" id="rsssl_do_activate_ssl" name="rsssl_do_activate_ssl"></form>';
	}
}

$items = array(
		1 => array(
			'class' => 'footer-right',
			'dot_class' => $ssl_enabled,
			'text' => $ssl_text,
		),
		2 => array(
			'class' => 'footer-right',
			'dot_class' => $redirect_301,
			'text' => __("301 Redirect", "really-simple-ssl"),
		),
	);

?>
<div id="rsssl-progress-footer">
    <span class="rsssl-footer-item footer-left">
        <?php echo apply_filters("rsssl_progress_footer_left", '').$activate_btn.apply_filters("rsssl_progress_footer_right", $go_pro )?>
    </span>
	<?php
	foreach ($items as $item) { ?>
		<span class="rsssl-footer-item <?php echo $item['class']?>">
		    <span class="rsssl-grid-footer dot <?php echo $item['dot_class']?>"></span>
            <?php echo $item['text']?>
		</span>

	<?php }  ?>
</div>