Plugin Directory

Changeset 3478152


Ignore:
Timestamp:
03/09/2026 01:14:43 PM (4 weeks ago)
Author:
ibsofts
Message:

UI enhancements for an improved user experience.

Location:
form-integration-for-go-high-level-and-jotform
Files:
60 added
11 edited

Legend:

Unmodified
Added
Removed
  • form-integration-for-go-high-level-and-jotform/trunk/README.txt

    r3475700 r3478152  
    55Requires at least: 6.2
    66Tested up to: 6.9
    7 Stable tag: 1.0.2
     7Stable tag: 1.0.3
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    1919
    2020If you are not aware, of what GHL is, please review [here](https://www.gohighlevel.com/?fp_ref=ibsofts "GoHighLevel")
     21
     22*This plugin description contains affiliate links. If you click on a link and purchase a HighLevel (GoHighLevel) subscription, I may receive a commission at no additional cost to you. I only recommend products and services I genuinely believe in and that provide value. My endorsement of HighLevel is based on my honest assessment of the platform's capabilities for businesses and agencies.*
    2123
    2224=  Level Up with Form Integration for Go High Level and Jotform =
     
    216218👉 [Reviews for WooCommerce](https://wordpress.org/plugins/reviews-for-woocommerce/)
    217219
    218 == Disclaimer ==
    219 
    220 This plugin is an independent integration developed by iB Softs to connect Gravity Forms with GoHighLevel.
    221 
    222 iB Softs is not affiliated with, endorsed by, or officially associated with HighLevel Inc. “GoHighLevel” and related trademarks belong to their respective owners and are used only to describe compatibility.
     220
    223221
    224222== Changelog ==
     223= 1.0.3 =
     224* UI enhancements for an improved user experience.
     225
    225226= 1.0.2 =
    226227* Update plugin readme.txt file.
     
    234235
    235236== Upgrade Notice ==
     237= 1.0.3 =
     238* UI enhancements for an improved user experience.
     239
    236240= 1.0.2 =
    237241* Update plugin readme.txt file.
  • form-integration-for-go-high-level-and-jotform/trunk/admin/class-ghl-jotform-admin.php

    r3475700 r3478152  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      1.0.2
     7 * @since      1.0.3
    88 *
    99 * @package    Ghl_Jotform
     
    2626     * The ID of this plugin.
    2727     *
    28      * @since    1.0.2
     28     * @since    1.0.3
    2929     * @access   private
    3030     * @var      string    $plugin_name    The ID of this plugin.
     
    3535     * The version of this plugin.
    3636     *
    37      * @since    1.0.2
     37     * @since    1.0.3
    3838     * @access   private
    3939     * @var      string    $version    The current version of this plugin.
     
    4444     * Initialize the class and set its properties.
    4545     *
    46      * @since    1.0.2
     46     * @since    1.0.3
    4747     * @param      string    $plugin_name       The name of this plugin.
    4848     * @param      string    $version    The version of this plugin.
     
    5858     * Register the stylesheets for the admin area.
    5959     *
    60      * @since    1.0.2
     60     * @since    1.0.3
    6161     */
    6262    public function enqueue_styles() {
     
    8181     * Register the JavaScript for the admin area.
    8282     *
    83      * @since    1.0.2
     83     * @since    1.0.3
    8484     */
    8585    public function enqueue_scripts() {
  • form-integration-for-go-high-level-and-jotform/trunk/admin/partials/ghl-jotform-admin-display.php

    r3475700 r3478152  
    77 *
    88 * @link       https://www.ibsofts.com
    9  * @since      1.0.2
     9 * @since      1.0.3
    1010 *
    1111 * @package    Ghl_Jotform
  • form-integration-for-go-high-level-and-jotform/trunk/ghl-jotform.php

    r3475700 r3478152  
    1010 *
    1111 * @link              https://www.ibsofts.com
    12  * @since             1.0.2
     12 * @since             1.0.3
    1313 * @package           Ghl_Jotform
    1414 *
     
    1616 * Plugin Name:       Form Integration for Go High Level and Jotform 
    1717 * Description:       This plugin sends Jotform Data to Go High Level on form submission.
    18  * Version:           1.0.2
     18 * Version:           1.0.3
    1919 * Author:            iB Softs
    2020 * Author URI:        https://www.ibsofts.com/
     
    3232/**
    3333 * Currently plugin version.
    34  * Start at version 1.0.2 and use SemVer - https://semver.org
     34 * Start at version 1.0.3 and use SemVer - https://semver.org
    3535 * Rename this for your plugin and update it as you release new versions.
    3636 */
    37 define('FORMINFO_GHLJOTFORM_VERSION', '1.0.2');
     37define('FORMINFO_GHLJOTFORM_VERSION', '1.0.3');
    3838define('FORMINFO_GHLJOTFORM_PLUGIN_BASENAME', plugin_basename(__DIR__));
    3939define('FORMINFO_GHLJOTFORM_LOCATION_CONNECTED', false);
     
    9090 * not affect the page life cycle.
    9191 *
    92  * @since    1.0.2
     92 * @since    1.0.3
    9393 */
    9494function forminfo_ghljotform_run()
  • form-integration-for-go-high-level-and-jotform/trunk/includes/class-ghl-jotform-activator.php

    r3475700 r3478152  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      1.0.2
     7 * @since      1.0.3
    88 *
    99 * @package    Ghl_Jotform
     
    1616 * This class defines all code necessary to run during the plugin's activation.
    1717 *
    18  * @since      1.0.2
     18 * @since      1.0.3
    1919 * @package    Ghl_Jotform
    2020 * @subpackage Ghl_Jotform/includes
  • form-integration-for-go-high-level-and-jotform/trunk/includes/class-ghl-jotform-deactivator.php

    r3475700 r3478152  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      1.0.2
     7 * @since      1.0.3
    88 *
    99 * @package    Ghl_Jotform
     
    1616 * This class defines all code necessary to run during the plugin's deactivation.
    1717 *
    18  * @since      1.0.2
     18 * @since      1.0.3
    1919 * @package    Ghl_Jotform
    2020 * @subpackage Ghl_Jotform/includes
     
    2828     * Long Description.
    2929     *
    30      * @since    1.0.2
     30     * @since    1.0.3
    3131     */
    3232    public static function deactivate() {
  • form-integration-for-go-high-level-and-jotform/trunk/includes/class-ghl-jotform-loader.php

    r3475700 r3478152  
    66 *
    77 * @link       https://www.ibsofts.com
    8  * @since      1.0.2
     8 * @since      1.0.3
    99 *
    1010 * @package    Ghl_Jotform
     
    2828     * The array of actions registered with WordPress.
    2929     *
    30      * @since    1.0.2
     30     * @since    1.0.3
    3131     * @access   protected
    3232     * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
     
    3737     * The array of filters registered with WordPress.
    3838     *
    39      * @since    1.0.2
     39     * @since    1.0.3
    4040     * @access   protected
    4141     * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
     
    4646     * Initialize the collections used to maintain the actions and filters.
    4747     *
    48      * @since    1.0.2
     48     * @since    1.0.3
    4949     */
    5050    public function __construct() {
     
    5858     * Add a new action to the collection to be registered with WordPress.
    5959     *
    60      * @since    1.0.2
     60     * @since    1.0.3
    6161     * @param    string               $hook             The name of the WordPress action that is being registered.
    6262     * @param    object               $component        A reference to the instance of the object on which the action is defined.
     
    7272     * Add a new filter to the collection to be registered with WordPress.
    7373     *
    74      * @since    1.0.2
     74     * @since    1.0.3
    7575     * @param    string               $hook             The name of the WordPress filter that is being registered.
    7676     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
     
    8787     * collection.
    8888     *
    89      * @since    1.0.2
     89     * @since    1.0.3
    9090     * @access   private
    9191     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
     
    114114     * Register the filters and actions with WordPress.
    115115     *
    116      * @since    1.0.2
     116     * @since    1.0.3
    117117     */
    118118    public function run() {
  • form-integration-for-go-high-level-and-jotform/trunk/includes/class-ghl-jotform.php

    r3475700 r3478152  
    1010 *
    1111 * @link       https://www.ibsofts.com
    12  * @since      1.0.2
     12 * @since      1.0.3
    1313 *
    1414 * @package    Ghl_Jotform
     
    2525 * version of the plugin.
    2626 *
    27  * @since      1.0.2
     27 * @since      1.0.3
    2828 * @package    Ghl_Jotform
    2929 * @subpackage Ghl_Jotform/includes
     
    3636     * the plugin.
    3737     *
    38      * @since    1.0.2
     38     * @since    1.0.3
    3939     * @access   protected
    4040     * @var      Ghl_Jotform_Loader    $loader    Maintains and registers all hooks for the plugin.
     
    4545     * The unique identifier of this plugin.
    4646     *
    47      * @since    1.0.2
     47     * @since    1.0.3
    4848     * @access   protected
    4949     * @var      string    $plugin_name    The string used to uniquely identify this plugin.
     
    5454     * The current version of the plugin.
    5555     *
    56      * @since    1.0.2
     56     * @since    1.0.3
    5757     * @access   protected
    5858     * @var      string    $version    The current version of the plugin.
     
    6767     * the public-facing side of the site.
    6868     *
    69      * @since    1.0.2
     69     * @since    1.0.3
    7070     */
    7171    public function __construct() {
     
    7373            $this->version = FORMINFO_GHLJOTFORM_VERSION;
    7474        } else {
    75             $this->version = '1.0.2';
     75            $this->version = '1.0.3';
    7676        }
    7777        $this->plugin_name = 'form-integration-for-go-high-level-and-jotform';
     
    9696     * with WordPress.
    9797     *
    98      * @since    1.0.2
     98     * @since    1.0.3
    9999     * @access   private
    100100     */
     
    135135     * with WordPress.
    136136     *
    137      * @since    1.0.2
     137     * @since    1.0.3
    138138     * @access   private
    139139     */
     
    143143     * of the plugin.
    144144     *
    145      * @since    1.0.2
     145     * @since    1.0.3
    146146     * @access   private
    147147     */
     
    159159     * of the plugin.
    160160     *
    161      * @since    1.0.2
     161     * @since    1.0.3
    162162     * @access   private
    163163     */
     
    174174     * Run the loader to execute all of the hooks with WordPress.
    175175     *
    176      * @since    1.0.2
     176     * @since    1.0.3
    177177     */
    178178    public function run() {
     
    184184     * WordPress and to define internationalization functionality.
    185185     *
    186      * @since     1.0.2
     186     * @since     1.0.3
    187187     * @return    string    The name of the plugin.
    188188     */
     
    194194     * The reference to the class that orchestrates the hooks with the plugin.
    195195     *
    196      * @since     1.0.2
     196     * @since     1.0.3
    197197     * @return    Ghl_Jotform_Loader    Orchestrates the hooks of the plugin.
    198198     */
     
    204204     * Retrieve the version number of the plugin.
    205205     *
    206      * @since     1.0.2
     206     * @since     1.0.3
    207207     * @return    string    The version number of the plugin.
    208208     */
  • form-integration-for-go-high-level-and-jotform/trunk/public/class-ghl-jotform-public.php

    r3475700 r3478152  
    77 *
    88 * @link       https://www.ibsofts.com
    9  * @since      1.0.2
     9 * @since      1.0.3
    1010 *
    1111 * @package    Ghl_Jotform
     
    2828     * The ID of this plugin.
    2929     *
    30      * @since    1.0.2
     30     * @since    1.0.3
    3131     * @access   private
    3232     * @var      string    $plugin_name    The ID of this plugin.
     
    3737     * The version of this plugin.
    3838     *
    39      * @since    1.0.2
     39     * @since    1.0.3
    4040     * @access   private
    4141     * @var      string    $version    The current version of this plugin.
     
    4646     * Initialize the class and set its properties.
    4747     *
    48      * @since    1.0.2
     48     * @since    1.0.3
    4949     * @param      string    $plugin_name       The name of the plugin.
    5050     * @param      string    $version    The version of this plugin.
     
    6060     * Register the stylesheets for the public-facing side of the site.
    6161     *
    62      * @since    1.0.2
     62     * @since    1.0.3
    6363     */
    6464    public function enqueue_styles() {
     
    8383     * Register the JavaScript for the public-facing side of the site.
    8484     *
    85      * @since    1.0.2
     85     * @since    1.0.3
    8686     */
    8787    public function enqueue_scripts() {
  • form-integration-for-go-high-level-and-jotform/trunk/public/partials/ghl-jotform-public-display.php

    r3475700 r3478152  
    77 *
    88 * @link       https://www.ibsofts.com
    9  * @since      1.0.2
     9 * @since      1.0.3
    1010 *
    1111 * @package    Ghl_Jotform
  • form-integration-for-go-high-level-and-jotform/trunk/uninstall.php

    r3475700 r3478152  
    2121 *
    2222 * @link       https://www.ibsofts.com
    23  * @since      1.0.2
     23 * @since      1.0.3
    2424 *
    2525 * @package    Ghl_Jotform
Note: See TracChangeset for help on using the changeset viewer.