HEX
Server: Apache
System: Linux sxb1plzcpnl440011.prod.sxb1.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: xfp2mtarcm67 (7705020)
PHP: 7.3.33
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/really-simple-ssl/assets/templates/two_fa/selectable-option.php
<?php
if (!isset($user) || !$user instanceof WP_User) {
    // We throw an error here because the $user variable is required
    throw new RuntimeException('The $user variable is required.');
}
//checking all other variables
if (!isset($badge_class, $enabled_text, $checked_attribute, $title, $description, $type, $forcible)) {
    return; // Return early if variables are not set
}
?>
<p>
    <label class="radio-label">
        <strong><?php echo $title ?></strong>
        <input type="radio" name="preferred_method" value="<?php echo $type ?>"
               class="radio-input" <?php echo $checked_attribute; ?>/>
    </label>
    <br>
    <?php
    echo $description;
    // Get the user's role.
    $user_roles = $user->roles;
    // If this is in the forced roles, we do not show the "disable" link.
    ?>
</p>