Plugin Directory

Changeset 2752769


Ignore:
Timestamp:
07/06/2022 09:11:27 PM (4 years ago)
Author:
shfarr
Message:

Tested up to 6.0

Location:
identity-plus/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • identity-plus/trunk/identity-plus.php

    r2516378 r2752769  
    55   Plugin URI: https://wordpress.org/plugins/identity-plus
    66   Description: Connect your WordPress with Identity Plus and enable invisible 2 factor authentication, secured SSO, SSL Client Certificate based access on select pages and join the Identity Plus network of trust where devices and people are anonymousely rated based on how they behave.
    7    Version: 2.4.1
     7   Version: 2.4.2
    88   Author: Identity Plus Inc.
    99   Author URI: https://identity.plus
  • identity-plus/trunk/lib/settings_panel.php

    r2362334 r2752769  
    5757function identity_plus_enforce_render(  ) {
    5858        $options = get_option( 'identity_plus_settings' );?>
    59         <input type='checkbox' id='identity_plus_settings[enforce]' name='identity_plus_settings[enforce]' <?php isset($options['enforce']) ? checked( $options['enforce'], 1 ) : ""; ?> value='1'><label for='identity_plus_settings[enforce]'>Enforce Device Identity</label>
    60         <p class="identity-plus-hint" style="margin-bottom:10px;">When Identity Plus device id is enforced, resources starting with any of the enumerated filters will only
     59        <?php if(isset($_SESSION['identity-plus-user-profile'])){ ?>
     60            <input type='checkbox' id='identity_plus_settings[enforce]' name='identity_plus_settings[enforce]' <?php isset($options['enforce']) ? checked( $options['enforce'], 1 ) : ""; ?> value='1'><label for='identity_plus_settings[enforce]'>Enforce Device Identity</label>
     61        <?php } else { ?>
     62            <p class="identity-plus-hint" style="margin-bottom:10px;">Enforce Device Identity is disabled to prevent you from locking yourself out of your Wordpress. Please install a device identity to access this feature.</p>     
     63        <?php } ?>
     64        <p class="identity-plus-hint" style="margin-bottom:10px;">When Identity Plus Device Identity is enforced, resources starting with any of the enumerated filters will only
    6165        be accessible from devices (desktop / laptop /mobile ) bearing a valid Identity + SSL Client Certificate. </p><?php
    6266}
     
    254258                </div>
    255259        </form>
    256 
    257         <form id="upload-fm" class="identity-plus-main-fm" action="admin-post.php" method='post' enctype="multipart/form-data">
    258                 <h2>Network of Trust</h2>
    259                 <p class="identity-plus-separator" style="padding-top:5px;"></p><p class="identity-plus-hint">Collaborate with the Identity Plus community to better identify legitimate users using anonymized hooks (no personal information is shared). This will help eliminate SPAM and fake accounts.</p>
    260                 <input type="hidden" name="action" value="not_enroll">
    261                 <div>
    262                     <?php submit_button(isset($options['not_enroll']) && $options['not_enroll'] == 1 ? "Disable" : "Enroll"); ?>
    263                 </div>
    264         </form>
     260        <?php if(false){
     261            // deliberately disabling network of trust as it is not needed at the moment
     262            ?>
     263            <form id="upload-fm" class="identity-plus-main-fm" action="admin-post.php" method='post' enctype="multipart/form-data">
     264                    <h2>Network of Trust</h2>
     265                    <p class="identity-plus-separator" style="padding-top:5px;"></p><p class="identity-plus-hint">Collaborate with the Identity Plus community to better identify legitimate users using anonymized hooks (no personal information is shared). This will help eliminate SPAM and fake accounts.</p>
     266                    <input type="hidden" name="action" value="not_enroll">
     267                    <div>
     268                        <?php submit_button(isset($options['not_enroll']) && $options['not_enroll'] == 1 ? "Disable" : "Enroll"); ?>
     269                    </div>
     270            </form>
     271        <?php } ?>
    265272    <?php
    266273    }
     
    302309        <div class="identity-plus-main-fm-header">
    303310            <h1 class="identity-plus-brand">identity<span>plus</span></h1>
    304             <h5>we build on trust</h5>
     311            <h5>log in with your device</h5>
    305312        </div>
    306313       
  • identity-plus/trunk/readme.txt

    r2516378 r2752769  
    33Tags: authentication, security, 2factor, comments, spam, VPN, tls authentication, SSL client certificate, device identity, identity in the browser, two factor, login, two step authentication, password, admin, mobile, multi-factor, android, iphone, sso, strong two-step verification
    44Requires at least: 3.9
    5 Tested up to: 5.7
    6 Stable tag: 2.4.1
     5Tested up to: 6.0
     6Stable tag: 2.4.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8888== Changelog ==
    8989
     90== 2.4.2 ==
     91Minor bug fixes and tested with WordPress 6.0
     92
    9093== 2.4.1 ==
    9194Minor bug fixes
Note: See TracChangeset for help on using the changeset viewer.