Plugin Directory

Changeset 3072101


Ignore:
Timestamp:
04/17/2024 06:36:08 AM (11 months ago)
Author:
ryankienstra
Message:

Deploying version 2.0.1

Location:
adapter-gravity-add-on
Files:
4 deleted
18 edited
1 copied

Legend:

Unmodified
Added
Removed
  • adapter-gravity-add-on/tags/2.0.1/README.md

    r3072082 r3072101  
    55Tested up to: 6.5
    66Requires at least: 6.4
    7 Stable tag: 2.0.0
     7Stable tag: 2.0.1
    88Requires PHP: 8.0
    99License: GPLv2 or later
     
    3030### What does this require?
    3131
    32 Gravity Forms 1.9 or higher. This is tested up to Gravity Forms 2.2.5.
     32Gravity Forms 2.8.0 or higher.
    3333
    3434## Screenshots
     
    3838
    3939## Changelog
     40
     41### 2.0.1
     42* Fixed: Remove the 'Requires Plugins' header value.
    4043
    4144### 2.0.0
  • adapter-gravity-add-on/tags/2.0.1/adapter-gravity-add-on.php

    r3072082 r3072101  
    88 * Plugin URI: https://github.com/kienstra/adapter-gravity-add-on
    99 * Description: Add-on for Gravity Forms, with an option to show a form at the end of every post. To use, click "Forms" in the left menu of your admin screen. Scroll over one of your forms, and click "Settings." Scroll down to "Form Options." You'll see a toggle "Display at the bottom of every post."
    10  * Version: 2.0.0
     10 * Version: 2.0.1
    1111 * Requires at least: 6.4
    1212 * Requires PHP: 8.0
    13  * Requires Plugins: gravityforms
    1413 * Author: Ryan Kienstra
    1514 * Author URI: https://ryankienstra.com
  • adapter-gravity-add-on/tags/2.0.1/php/AdapterAddOn.php

    r3072082 r3072101  
    2222 */
    2323class AdapterAddOn extends GFAddOn {
    24     public $_version                  = '2.0.0';
     24    public $_version                  = '2.0.1';
    2525    public $_min_gravityforms_version = '2.8.0';
    2626    public $_slug                     = 'adapter-gravity-add-on';
    2727    public $_full_path                = __FILE__;
    2828
    29     /**
    30      * Assigns the add-on properties.
    31      */
    3229    public function __construct() {
    3330        $this->_path        = $this->_slug . '/php/AdapterAddOn.php';
     
    3835    }
    3936
    40     /**
    41      * Statically gets the instance of this add-on.
    42      */
    4337    public static function get_instance(): AdapterAddOn {
    4438        static $instance;
     
    5145    }
    5246
    53     /**
    54      * Adds the plugin actions.
    55      */
    5647    public function init(): void {
    5748        $email_setting = EmailSettingFactory::create();
  • adapter-gravity-add-on/tags/2.0.1/php/EmailForm.php

    r3072082 r3072101  
    5454    }
    5555
    56     /**
    57      * Whether to append a form to the content.
    58      */
     56    /** Whether to append a form to the content. */
    5957    public function do_append_form_to_content( array $form ): bool {
    6058        return (
  • adapter-gravity-add-on/tags/2.0.1/php/EmailSetting.php

    r3072082 r3072101  
    1717    public $bottom_of_post = 'aga_bottom_of_post';
    1818
    19     /** Add the filters for the class. */
     19    /** Adds the filters for the class. */
    2020    public function init(): void {
    2121        add_filter( 'gform_form_settings_fields', [ $this, 'add_bottom_of_post_setting' ] );
  • adapter-gravity-add-on/tags/2.0.1/vendor/autoload.php

    r3072082 r3072101  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInitae8122e6b133bdbf6f77a5ed6b55aa62::getLoader();
     25return ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20::getLoader();
  • adapter-gravity-add-on/tags/2.0.1/vendor/composer/autoload_real.php

    r3072082 r3072101  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitae8122e6b133bdbf6f77a5ed6b55aa62
     5class ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInitae8122e6b133bdbf6f77a5ed6b55aa62', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInitae8122e6b133bdbf6f77a5ed6b55aa62', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInitae8122e6b133bdbf6f77a5ed6b55aa62::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • adapter-gravity-add-on/tags/2.0.1/vendor/composer/autoload_static.php

    r3072082 r3072101  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitae8122e6b133bdbf6f77a5ed6b55aa62
     7class ComposerStaticInit927012ad2714b67e12fe260d0be0ad20
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    3434    {
    3535        return \Closure::bind(function () use ($loader) {
    36             $loader->prefixLengthsPsr4 = ComposerStaticInitae8122e6b133bdbf6f77a5ed6b55aa62::$prefixLengthsPsr4;
    37             $loader->prefixDirsPsr4 = ComposerStaticInitae8122e6b133bdbf6f77a5ed6b55aa62::$prefixDirsPsr4;
    38             $loader->classMap = ComposerStaticInitae8122e6b133bdbf6f77a5ed6b55aa62::$classMap;
     36            $loader->prefixLengthsPsr4 = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$prefixLengthsPsr4;
     37            $loader->prefixDirsPsr4 = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$prefixDirsPsr4;
     38            $loader->classMap = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$classMap;
    3939
    4040        }, null, ClassLoader::class);
  • adapter-gravity-add-on/tags/2.0.1/vendor/composer/installed.php

    r3072082 r3072101  
    22    'root' => array(
    33        'name' => 'kienstra/adapter-gravity-add-on',
    4         'pretty_version' => '2.0.0',
    5         'version' => '2.0.0.0',
    6         'reference' => '4b0c1d94317c3842595ee51330f942eb755fed77',
     4        'pretty_version' => '2.0.1',
     5        'version' => '2.0.1.0',
     6        'reference' => '09a69d7cb027325fe841c8b38064e42766b83ee3',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'kienstra/adapter-gravity-add-on' => array(
    14             'pretty_version' => '2.0.0',
    15             'version' => '2.0.0.0',
    16             'reference' => '4b0c1d94317c3842595ee51330f942eb755fed77',
     14            'pretty_version' => '2.0.1',
     15            'version' => '2.0.1.0',
     16            'reference' => '09a69d7cb027325fe841c8b38064e42766b83ee3',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • adapter-gravity-add-on/trunk/README.md

    r3072082 r3072101  
    55Tested up to: 6.5
    66Requires at least: 6.4
    7 Stable tag: 2.0.0
     7Stable tag: 2.0.1
    88Requires PHP: 8.0
    99License: GPLv2 or later
     
    3030### What does this require?
    3131
    32 Gravity Forms 1.9 or higher. This is tested up to Gravity Forms 2.2.5.
     32Gravity Forms 2.8.0 or higher.
    3333
    3434## Screenshots
     
    3838
    3939## Changelog
     40
     41### 2.0.1
     42* Fixed: Remove the 'Requires Plugins' header value.
    4043
    4144### 2.0.0
  • adapter-gravity-add-on/trunk/adapter-gravity-add-on.php

    r3072082 r3072101  
    88 * Plugin URI: https://github.com/kienstra/adapter-gravity-add-on
    99 * Description: Add-on for Gravity Forms, with an option to show a form at the end of every post. To use, click "Forms" in the left menu of your admin screen. Scroll over one of your forms, and click "Settings." Scroll down to "Form Options." You'll see a toggle "Display at the bottom of every post."
    10  * Version: 2.0.0
     10 * Version: 2.0.1
    1111 * Requires at least: 6.4
    1212 * Requires PHP: 8.0
    13  * Requires Plugins: gravityforms
    1413 * Author: Ryan Kienstra
    1514 * Author URI: https://ryankienstra.com
  • adapter-gravity-add-on/trunk/php/AdapterAddOn.php

    r3072082 r3072101  
    2222 */
    2323class AdapterAddOn extends GFAddOn {
    24     public $_version                  = '2.0.0';
     24    public $_version                  = '2.0.1';
    2525    public $_min_gravityforms_version = '2.8.0';
    2626    public $_slug                     = 'adapter-gravity-add-on';
    2727    public $_full_path                = __FILE__;
    2828
    29     /**
    30      * Assigns the add-on properties.
    31      */
    3229    public function __construct() {
    3330        $this->_path        = $this->_slug . '/php/AdapterAddOn.php';
     
    3835    }
    3936
    40     /**
    41      * Statically gets the instance of this add-on.
    42      */
    4337    public static function get_instance(): AdapterAddOn {
    4438        static $instance;
     
    5145    }
    5246
    53     /**
    54      * Adds the plugin actions.
    55      */
    5647    public function init(): void {
    5748        $email_setting = EmailSettingFactory::create();
  • adapter-gravity-add-on/trunk/php/EmailForm.php

    r3072082 r3072101  
    5454    }
    5555
    56     /**
    57      * Whether to append a form to the content.
    58      */
     56    /** Whether to append a form to the content. */
    5957    public function do_append_form_to_content( array $form ): bool {
    6058        return (
  • adapter-gravity-add-on/trunk/php/EmailSetting.php

    r3072082 r3072101  
    1717    public $bottom_of_post = 'aga_bottom_of_post';
    1818
    19     /** Add the filters for the class. */
     19    /** Adds the filters for the class. */
    2020    public function init(): void {
    2121        add_filter( 'gform_form_settings_fields', [ $this, 'add_bottom_of_post_setting' ] );
  • adapter-gravity-add-on/trunk/vendor/autoload.php

    r3072082 r3072101  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInitae8122e6b133bdbf6f77a5ed6b55aa62::getLoader();
     25return ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20::getLoader();
  • adapter-gravity-add-on/trunk/vendor/composer/autoload_real.php

    r3072082 r3072101  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitae8122e6b133bdbf6f77a5ed6b55aa62
     5class ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInitae8122e6b133bdbf6f77a5ed6b55aa62', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInitae8122e6b133bdbf6f77a5ed6b55aa62', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInitae8122e6b133bdbf6f77a5ed6b55aa62::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • adapter-gravity-add-on/trunk/vendor/composer/autoload_static.php

    r3072082 r3072101  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitae8122e6b133bdbf6f77a5ed6b55aa62
     7class ComposerStaticInit927012ad2714b67e12fe260d0be0ad20
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    3434    {
    3535        return \Closure::bind(function () use ($loader) {
    36             $loader->prefixLengthsPsr4 = ComposerStaticInitae8122e6b133bdbf6f77a5ed6b55aa62::$prefixLengthsPsr4;
    37             $loader->prefixDirsPsr4 = ComposerStaticInitae8122e6b133bdbf6f77a5ed6b55aa62::$prefixDirsPsr4;
    38             $loader->classMap = ComposerStaticInitae8122e6b133bdbf6f77a5ed6b55aa62::$classMap;
     36            $loader->prefixLengthsPsr4 = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$prefixLengthsPsr4;
     37            $loader->prefixDirsPsr4 = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$prefixDirsPsr4;
     38            $loader->classMap = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$classMap;
    3939
    4040        }, null, ClassLoader::class);
  • adapter-gravity-add-on/trunk/vendor/composer/installed.php

    r3072082 r3072101  
    22    'root' => array(
    33        'name' => 'kienstra/adapter-gravity-add-on',
    4         'pretty_version' => '2.0.0',
    5         'version' => '2.0.0.0',
    6         'reference' => '4b0c1d94317c3842595ee51330f942eb755fed77',
     4        'pretty_version' => '2.0.1',
     5        'version' => '2.0.1.0',
     6        'reference' => '09a69d7cb027325fe841c8b38064e42766b83ee3',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'kienstra/adapter-gravity-add-on' => array(
    14             'pretty_version' => '2.0.0',
    15             'version' => '2.0.0.0',
    16             'reference' => '4b0c1d94317c3842595ee51330f942eb755fed77',
     14            'pretty_version' => '2.0.1',
     15            'version' => '2.0.1.0',
     16            'reference' => '09a69d7cb027325fe841c8b38064e42766b83ee3',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.