Plugin Directory

Changeset 2889509


Ignore:
Timestamp:
03/29/2023 09:42:17 PM (3 years ago)
Author:
hipaatizer
Message:

1.3.1

Location:
hipaatizer
Files:
69 added
6 edited

Legend:

Unmodified
Added
Removed
  • hipaatizer/trunk/admin/class-hipaatizer-admin.php

    r2855820 r2889509  
    593593    public function hipaa_admin_content() {
    594594        global $hipaaID, $hipaa_message, $message;
    595    
     595       
    596596        if ( $hipaaID != '' && !isset($_GET['hipaa_account']) && !isset($_GET['change_account'])  ): 
    597597       
     
    600600          $body     = wp_remote_retrieve_body( $response );
    601601          $res      = json_decode($body, true);
    602           $hipaa_email = $res['email'];
    603           $businessName = $res['businessName'];
    604           $type_form = (isset($_GET['type'])) ? trim($_GET['type']) : 'SimpleForm';
     602       
     603          $hipaa_email  = ( isset($res['email']) ) ? $res['email'] : '';
     604          $businessName = ( isset($res['businessName']) ) ? $res['businessName'] : '';
     605          $type_form    = (isset($_GET['type'])) ? trim($_GET['type']) : 'SimpleForm';
    605606          switch($type_form){
    606607                 case 'HipaaSign': $titleForm = esc_html__('HIPAAsign forms', 'hipaatizer'); break;
  • hipaatizer/trunk/admin/css/hipaatizer-admin.css

    r2855820 r2889509  
    4747    margin-left: auto;
    4848    margin-right: auto;
    49     font-size: 16px;
     49    font-size: 14px;
    5050}
    5151.hipaa-wrapper.full-width {
     
    414414}
    415415.hipaa-tabs {
    416     width: 180px;
     416    width: 200px;
    417417    padding-left: 24px;
    418418    border-right: 1px solid #D9D9D9;
     
    431431.hipaa-tabs ul li a {
    432432    color: #000000d9;
    433     display: flex;
    434     align-items: center;
     433    display: block;
     434    padding-left: 24px;
    435435}
    436436.hipaa-tabs ul li a:hover {
     
    442442}
    443443.hipaa-tabs ul li a svg {
    444     margin-right: 12px;
     444    position: absolute;
     445    left: 0;
     446    width: 24px;
     447    transform: translateY(2px);
    445448}
    446449.ant-typography {
  • hipaatizer/trunk/admin/js/hipaatizer-admin.js

    r2855820 r2889509  
    182182    console.log('event.data', event.data)
    183183
    184     if (event.data.includes(identityHeader)) {
     184     if (typeof eventData === 'string' && eventData.includes(identityHeader)){
    185185        const accountId = eventData.substring(identityHeader.length);
    186186
  • hipaatizer/trunk/hipaatizer.php

    r2855820 r2889509  
    55 * Plugin URI:        https://hipaatizer.com/free-developer-account
    66 * Description:       HIPAAtizer - Helps you create and manage HIPAA-Compliant web forms.
    7  * Version:           1.3.0
     7 * Version:           1.3.1
    88 * Author:            Cappers
    99 * Author URI:        https://hipaatizer.com
     
    3939 * Currentl plugin version.
    4040 */
    41 define('HIPAATIZER_VERSION', '1.3.0');
     41define('HIPAATIZER_VERSION', '1.3.1');
    4242
    4343/**
  • hipaatizer/trunk/includes/class-hipaatizer-loader.php

    r2855820 r2889509  
    107107        );
    108108
     109    if( !empty( $hipaaID) ) :
    109110        $curl = HIPAATIZER_APP.'/api/v1/account/'.$hipaaID.'/published_workflows';
    110111
     
    130131            'url_connect' => $url_connect,
    131132        ) );
     133       
     134    endif;
    132135   }
    133136
  • hipaatizer/trunk/readme.txt

    r2855820 r2889509  
    88Requires PHP: 5.6
    99Requires at least: 5.6
    10 Tested up to: 6.1.9
    11 Stable tag: 1.3.0
     10Tested up to: 6.2
     11Stable tag: 1.3.1
    1212
    1313HIPAA-Compliant Forms with Drag-and-Drop Form Builder, Contact Form 7 and PDF or Word converter.
     
    133133
    134134== Changelog ==
     135= 1.3.1 =
     136* Improved performance and stability.
    135137
    136138= 1.3.0 =
Note: See TracChangeset for help on using the changeset viewer.