Plugin Directory

Changeset 3474514


Ignore:
Timestamp:
03/04/2026 12:12:37 PM (4 weeks ago)
Author:
ibsofts
Message:

Update plugin readme.txt file.

Location:
go-high-level-extension-for-gravity-form
Files:
69 added
12 edited

Legend:

Unmodified
Added
Removed
  • go-high-level-extension-for-gravity-form/trunk/README.txt

    r3474503 r3474514  
    77Requires at least: 4.0
    88Tested up to: 6.9
    9 Stable tag: 6.0.0
     9Stable tag: 6.0.1
    1010Requires PHP: 7.4
    1111License: GPLv2 or later
     
    182182
    183183== Changelog ==
     184= 6.0.1 =
     185Update plugin readme.txt file.
     186
    184187= 6.0.0 =
    185188Added support for latest WordPress version (6.9).
     
    264267
    265268== Upgrade Notice ==
     269= 6.0.1 =
     270Update plugin readme.txt file.
     271
    266272= 6.0.0 =
    267273Added support for latest WordPress version (6.9).
  • go-high-level-extension-for-gravity-form/trunk/admin/class-ghl-gf-extension-admin.php

    r3418072 r3474514  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      6.0.0
     7 * @since      6.0.1
    88 *
    99 * @package    Ghl_Gf_Extension
     
    2828     * The ID of this plugin.
    2929     *
    30      * @since    6.0.0
     30     * @since    6.0.1
    3131     * @access   private
    3232     * @var      string    $plugin_name    The ID of this plugin.
     
    3737     * The version of this plugin.
    3838     *
    39      * @since    6.0.0
     39     * @since    6.0.1
    4040     * @access   private
    4141     * @var      string    $version    The current version of this plugin.
     
    4646     * Initialize the class and set its properties.
    4747     *
    48      * @since    6.0.0
     48     * @since    6.0.1
    4949     * @param      string    $plugin_name       The name of this plugin.
    5050     * @param      string    $version    The version of this plugin.
     
    5959     * Register the stylesheets for the admin area.
    6060     *
    61      * @since    6.0.0
     61     * @since    6.0.1
    6262     */
    6363    public function enqueue_styles()
     
    8383     * Register the JavaScript for the admin area.
    8484     *
    85      * @since    6.0.0
     85     * @since    6.0.1
    8686     */
    8787    public function enqueue_scripts()
  • go-high-level-extension-for-gravity-form/trunk/admin/partials/ghl-gf-extension-admin-display.php

    r3418072 r3474514  
    77 *
    88 * @link       https://www.ibsofts.com
    9  * @since      6.0.0
     9 * @since      6.0.1
    1010 *
    1111 * @package    Ghl_Gf_Extension
  • go-high-level-extension-for-gravity-form/trunk/ghl-gf-extension.php

    r3418072 r3474514  
    1010 *
    1111 * @link              https://www.ibsofts.com
    12  * @since             6.0.0
     12 * @since             6.0.1
    1313 * @package           Ghl_Gf_Extension
    1414 *
     
    1717 * Plugin URI:        https://www.ibsofts.com/wordpress/extensions/go-high-level-gf-extension
    1818 * Description:       This is a powerful extension that streamlines your lead generation process by seamlessly connecting Gravity Forms, one of the leading form builder plugins for WordPress, with Go High Level CRM. This integration allows you to send Gravity Form Data to Go High Level on form submission.
    19  * Version:           6.0.0
     19 * Version:           6.0.1
    2020 * Author:            iB Softs
    2121 * Author URI:        https://www.ibsofts.com
     
    3333/**
    3434 * Currently plugin version.
    35  * Start at version 6.0.0 and use SemVer - https://semver.org
     35 * Start at version 6.0.1 and use SemVer - https://semver.org
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define('GHL_GF_EXTENSION_VERSION', '6.0.0');
     38define('GHL_GF_EXTENSION_VERSION', '6.0.1');
    3939define('GHL_LOCATION_CONNECTED', false);
    4040
     
    118118 * not affect the page life cycle.
    119119 *
    120  * @since    6.0.0
     120 * @since    6.0.1
    121121 */
    122122function run_ghl_gf_extension()
  • go-high-level-extension-for-gravity-form/trunk/includes/class-ghl-gf-extension-activator.php

    r3418072 r3474514  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      6.0.0
     7 * @since      6.0.1
    88 *
    99 * @package    Ghl_Gf_Extension
     
    1616 * This class defines all code necessary to run during the plugin's activation.
    1717 *
    18  * @since      6.0.0
     18 * @since      6.0.1
    1919 * @package    Ghl_Gf_Extension
    2020 * @subpackage Ghl_Gf_Extension/includes
     
    2929     * Long Description.
    3030     *
    31      * @since    6.0.0
     31     * @since    6.0.1
    3232     */
    3333    public static function activate()
  • go-high-level-extension-for-gravity-form/trunk/includes/class-ghl-gf-extension-deactivator.php

    r3418072 r3474514  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      6.0.0
     7 * @since      6.0.1
    88 *
    99 * @package    Ghl_Gf_Extension
     
    1616 * This class defines all code necessary to run during the plugin's deactivation.
    1717 *
    18  * @since      6.0.0
     18 * @since      6.0.1
    1919 * @package    Ghl_Gf_Extension
    2020 * @subpackage Ghl_Gf_Extension/includes
     
    2929     * Long Description.
    3030     *
    31      * @since    6.0.0
     31     * @since    6.0.1
    3232     */
    3333    public static function deactivate() {}
  • go-high-level-extension-for-gravity-form/trunk/includes/class-ghl-gf-extension-i18n.php

    r3418072 r3474514  
    88 *
    99 * @link       https://www.ibsofts.com
    10  * @since      6.0.0
     10 * @since      6.0.1
    1111 *
    1212 * @package    Ghl_Gf_Extension
     
    2020 * so that it is ready for translation.
    2121 *
    22  * @since      6.0.0
     22 * @since      6.0.1
    2323 * @package    Ghl_Gf_Extension
    2424 * @subpackage Ghl_Gf_Extension/includes
     
    3232     * Load the plugin text domain for translation.
    3333     *
    34      * @since    6.0.0
     34     * @since    6.0.1
    3535     */
    3636    public function load_plugin_textdomain()
  • go-high-level-extension-for-gravity-form/trunk/includes/class-ghl-gf-extension-loader.php

    r3418072 r3474514  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      6.0.0
     7 * @since      6.0.1
    88 *
    99 * @package    Ghl_Gf_Extension
     
    2828     * The array of actions registered with WordPress.
    2929     *
    30      * @since    6.0.0
     30     * @since    6.0.1
    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    6.0.0
     39     * @since    6.0.1
    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   6.0.0
     48     * @since   6.0.1
    4949     */
    5050    public function __construct()
     
    5858     * Add a new action to the collection to be registered with WordPress.
    5959     *
    60      * @since    6.0.0
     60     * @since    6.0.1
    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.
     
    7373     * Add a new filter to the collection to be registered with WordPress.
    7474     *
    75      * @since    6.0.0
     75     * @since    6.0.1
    7676     * @param    string               $hook             The name of the WordPress filter that is being registered.
    7777     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
     
    8989     * collection.
    9090     *
    91      * @since    6.0.0
     91     * @since    6.0.1
    9292     * @access   private
    9393     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
     
    116116     * Register the filters and actions with WordPress.
    117117     *
    118      * @since    6.0.0
     118     * @since    6.0.1
    119119     */
    120120    public function run()
  • go-high-level-extension-for-gravity-form/trunk/includes/class-ghl-gf-extension.php

    r3418072 r3474514  
    88 *
    99 * @link       https://www.ibsofts.com
    10  * @since      6.0.0
     10 * @since      6.0.1
    1111 *
    1212 * @package    Ghl_Gf_Extension
     
    2323 * version of the plugin.
    2424 *
    25  * @since      6.0.0
     25 * @since      6.0.1
    2626 * @package    Ghl_Gf_Extension
    2727 * @subpackage Ghl_Gf_Extension/includes
     
    3535     * the plugin.
    3636     *
    37      * @since    6.0.0
     37     * @since    6.0.1
    3838     * @access   protected
    3939     * @var      Ghl_Gf_Extension_Loader    $loader    Maintains and registers all hooks for the plugin.
     
    4444     * The unique identifier of this plugin.
    4545     *
    46      * @since    6.0.0
     46     * @since    6.0.1
    4747     * @access   protected
    4848     * @var      string    $plugin_name    The string used to uniquely identify this plugin.
     
    5353     * The current version of the plugin.
    5454     *
    55      * @since    6.0.0
     55     * @since    6.0.1
    5656     * @access   protected
    5757     * @var      string    $version    The current version of the plugin.
     
    6666     * the public-facing side of the site.
    6767     *
    68      * @since    6.0.0
     68     * @since    6.0.1
    6969     */
    7070    public function __construct()
     
    7373            $this->version = GHL_GF_EXTENSION_VERSION;
    7474        } else {
    75             $this->version = '6.0.0';
     75            $this->version = '6.0.1';
    7676        }
    7777        $this->plugin_name = 'ghl-gf-extension';
     
    9696     * with WordPress.
    9797     *
    98      * @since    6.0.0
     98     * @since    6.0.1
    9999     * @access   private
    100100     */
     
    136136     * with WordPress.
    137137     *
    138      * @since    6.0.0
     138     * @since    6.0.1
    139139     * @access   private
    140140     */
     
    151151     * of the plugin.
    152152     *
    153      * @since    6.0.0
     153     * @since    6.0.1
    154154     * @access   private
    155155     */
     
    182182     * of the plugin.
    183183     *
    184      * @since    6.0.0
     184     * @since    6.0.1
    185185     * @access   private
    186186     */
     
    197197     * Run the loader to execute all of the hooks with WordPress.
    198198     *
    199      * @since    6.0.0
     199     * @since    6.0.1
    200200     */
    201201    public function run()
     
    208208     * WordPress and to define internationalization functionality.
    209209     *
    210      * @since     6.0.0
     210     * @since     6.0.1
    211211     * @return    string    The name of the plugin.
    212212     */
     
    219219     * The reference to the class that orchestrates the hooks with the plugin.
    220220     *
    221      * @since     6.0.0
     221     * @since     6.0.1
    222222     * @return    Ghl_Gf_Extension_Loader    Orchestrates the hooks of the plugin.
    223223     */
     
    230230     * Retrieve the version number of the plugin.
    231231     *
    232      * @since     6.0.0
     232     * @since     6.0.1
    233233     * @return    string    The version number of the plugin.
    234234     */
  • go-high-level-extension-for-gravity-form/trunk/public/class-ghl-gf-extension-public.php

    r3418072 r3474514  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      6.0.0
     7 * @since      6.0.1
    88 *
    99 * @package    Ghl_Gf_Extension
     
    2727     * The ID of this plugin.
    2828     *
    29      * @since    6.0.0
     29     * @since    6.0.1
    3030     * @access   private
    3131     * @var      string    $plugin_name    The ID of this plugin.
     
    3636     * The version of this plugin.
    3737     *
    38      * @since    6.0.0
     38     * @since    6.0.1
    3939     * @access   private
    4040     * @var      string    $version    The current version of this plugin.
     
    4545     * Initialize the class and set its properties.
    4646     *
    47      * @since    6.0.0
     47     * @since    6.0.1
    4848     * @param      string    $plugin_name       The name of the plugin.
    4949     * @param      string    $version    The version of this plugin.
     
    5959     * Register the stylesheets for the public-facing side of the site.
    6060     *
    61      * @since    6.0.0
     61     * @since    6.0.1
    6262     */
    6363    public function enqueue_styles()
     
    8282     * Register the JavaScript for the public-facing side of the site.
    8383     *
    84      * @since    6.0.0
     84     * @since    6.0.1
    8585     */
    8686    public function enqueue_scripts()
  • go-high-level-extension-for-gravity-form/trunk/public/partials/ghl-gf-extension-public-display.php

    r3418072 r3474514  
    77 *
    88 * @link       https://www.ibsofts.com
    9  * @since      6.0.0
     9 * @since      6.0.1
    1010 *
    1111 * @package    Ghl_Gf_Extension
  • go-high-level-extension-for-gravity-form/trunk/uninstall.php

    r3418072 r3474514  
    2121 *
    2222 * @link       https://www.ibsofts.com
    23  * @since      6.0.0
     23 * @since      6.0.1
    2424 *
    2525 * @package    Ghl_Gf_Extension
Note: See TracChangeset for help on using the changeset viewer.