Plugin Directory

Changeset 3111035


Ignore:
Timestamp:
07/02/2024 10:04:39 AM (20 months ago)
Author:
sheldorofazeroth
Message:

Bug Fixes and code optimization and improvements

Location:
object-data-sync-for-salesforce
Files:
144 added
6 edited

Legend:

Unmodified
Added
Removed
  • object-data-sync-for-salesforce/trunk/Helper/class-plugin-constants.php

    r3064295 r3111035  
    2020
    2121    const HOSTNAME      = 'https://login.xecurify.com';
    22     const VERSION       = '1.2.2';
     22    const VERSION       = '1.2.3';
    2323    const ACCESS_TOKEN  = 'access_token';
    2424    const REFRESH_TOKEN = 'refresh_token';
  • object-data-sync-for-salesforce/trunk/Helper/view/class-field-mapping.php

    r2869169 r3111035  
    780780                            <tr>
    781781                                <td colspan="2" class="mo-sf-note">
    782                                     <h4> Select a WordPress user to test connection. This will create a record in the Salesforce as a selected object and configured field mapping.</h4>
     782                                    <h4> Select a WordPress user to test the connection. This will create a record in the selected Salesforce object as per the configured field mapping.</h4>
    783783                                <?php if ( ! $is_mapping_configured ) { ?>
    784784                                        <h4 style="color:red">Please configure field mapping first before testing the connection!</h4>
  • object-data-sync-for-salesforce/trunk/Helper/view/mo-sf-licenseplans.html

    r2965128 r3111035  
    146146            <div class="plan-container1">
    147147                <h3 class="premium-plan-head " ><b>WooCommerce Enterprise</b></h3>
    148                 <p class="premium-plan-text" style="margin-top:2rem;font-weight:600;"><b class="price-txt strike">$249</b><b class="strike">/Year</b>&nbsp;&nbsp;<b class="price-txt txt-color">$199</b><b class="txt-color">/Year</b></p>
     148                <p class="premium-plan-text" style="margin-top:2rem;font-weight:600;"><b class="price-txt txt-color">$249</b><b class="txt-color">/Year</b></p>
    149149                <div class="icon-svg" style=" padding: 1rem;">
    150150                    <svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 1200 1200" fill="none">
  • object-data-sync-for-salesforce/trunk/Services/class-db-utils.php

    r2869169 r3111035  
    380380            return 'salesforce_' . $data[0]->salesforce_object . '_ID';
    381381        }
    382         return array();
     382        return false;
    383383    }
    384384
  • object-data-sync-for-salesforce/trunk/object-data-sync-for salesforce.php

    r3064295 r3111035  
    44 * Plugin URI: http://miniorange.com
    55 * Description: Object Data Sync For Salesforce Plugin synchronizes WordPress users/posts with selected object/record in Salesforce and keeps Salesforce object/record in sync with the WordPress.
    6  * Version: 1.2.2
     6 * Version: 1.2.3
    77 * Author: miniOrange
    88 * Author URI: http://miniorange.com/
     
    277277        }
    278278        $app_config = maybe_unserialize( Utils::mo_sf_sync_get_settings( Plugin_Constants::CONFIG_OBJECT ) );
     279        $app_config = isset( $app_config ) && false !== $app_config ? $app_config : array();
    279280        if ( ! isset( $app_config[ Plugin_Constants::ENVIRONMENT ] ) ) {
    280281            Utils::mo_sf_sync_update_app_config( $app_config );
     
    309310        }
    310311        if ( ! isset( $nomenclature ) || empty( $nomenclature ) ) {
    311             return;
     312            return $which;
    312313        }
    313314        $st = '<select name="select_sync_status%s" style="float:none;margin-left:10px;">
     
    334335        echo wp_kses( $select, $allowed_html );
    335336        if ( 'users.php' === $pagenow ) {
    336             submit_button( __( 'Filter' ), null, $which, false );
     337            submit_button( __( 'Filter' ), 'secondary', $which, false );
    337338        }
    338339    }
     
    465466                    break;
    466467                case 'mo_sf_sync_client_config_option':
     468                    if ( ! check_admin_referer( 'mo_sf_sync_client_config_option', 'nonce_' ) ) {
     469                        break;
     470                    }
    467471                    $handler = Ajax_Handler::instance();
    468472                    $handler->mo_sf_sync_handle_config_object_save( $_POST );
    469473                    break;
    470474                case 'mo_sf_sync_app_provisioning_config_option':
     475                    if ( ! check_admin_referer( 'mo_sf_sync_app_provisioning_config_option', 'nonce_' ) ) {
     476                        break;
     477                    }
    471478                    $handler        = Data_Processing_Handler::instance();
    472479                    $processed_data = $handler->mo_sf_sync_save_realtime_sync( $_POST );
  • object-data-sync-for-salesforce/trunk/readme.txt

    r3064295 r3111035  
    66Tested up to: 6.5
    77Requires PHP: 7.0
    8 Stable tag: 1.2.2
     8Stable tag: 1.2.3
    99License: MIT/Expat
    1010License URI: https://docs.miniorange.com/mit-license
     
    8989* <strong> WordPress and Nonprofit Success Pack (NPSP) Integration </strong>
    9090* <Strong> WooCommerce, WP Subscriptions plugin and Program Management Module (PMM) Integration </strong>
    91 * <strong> WooCommerce, Membershpress, and LearnDash Integration with Nimble AMS </strong>
     91* <strong> WooCommerce, Memberpress, and LearnDash Integration with Nimble AMS </strong>
    9292* <strong> Pardot ( Marketing Cloud Account Engagement ) </strong>
    9393* <strong> WooCommerce, LearnDash and Student Success Hub for Higher Education Integration </strong>
     
    207207== ChangeLog ==
    208208
     209= 1.2.3 =
     210* Bug Fixes.
     211* Code optimization and Improvements
     212
    209213= 1.2.2 =
    210214* Added Compatibility with WordPress 6.5.
     
    309313== Upgrade Notice ==
    310314
     315= 1.2.3 =
     316* Bug Fixes.
     317* Code optimization and Improvements
     318
    311319= 1.2.2 =
    312320* Added Compatibility with WordPress 6.5.
Note: See TracChangeset for help on using the changeset viewer.