Changeset 3072101
- Timestamp:
- 04/17/2024 06:36:08 AM (11 months ago)
- 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 5 5 Tested up to: 6.5 6 6 Requires at least: 6.4 7 Stable tag: 2.0. 07 Stable tag: 2.0.1 8 8 Requires PHP: 8.0 9 9 License: GPLv2 or later … … 30 30 ### What does this require? 31 31 32 Gravity Forms 1.9 or higher. This is tested up to Gravity Forms 2.2.5.32 Gravity Forms 2.8.0 or higher. 33 33 34 34 ## Screenshots … … 38 38 39 39 ## Changelog 40 41 ### 2.0.1 42 * Fixed: Remove the 'Requires Plugins' header value. 40 43 41 44 ### 2.0.0 -
adapter-gravity-add-on/tags/2.0.1/adapter-gravity-add-on.php
r3072082 r3072101 8 8 * Plugin URI: https://github.com/kienstra/adapter-gravity-add-on 9 9 * 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. 010 * Version: 2.0.1 11 11 * Requires at least: 6.4 12 12 * Requires PHP: 8.0 13 * Requires Plugins: gravityforms14 13 * Author: Ryan Kienstra 15 14 * Author URI: https://ryankienstra.com -
adapter-gravity-add-on/tags/2.0.1/php/AdapterAddOn.php
r3072082 r3072101 22 22 */ 23 23 class AdapterAddOn extends GFAddOn { 24 public $_version = '2.0. 0';24 public $_version = '2.0.1'; 25 25 public $_min_gravityforms_version = '2.8.0'; 26 26 public $_slug = 'adapter-gravity-add-on'; 27 27 public $_full_path = __FILE__; 28 28 29 /**30 * Assigns the add-on properties.31 */32 29 public function __construct() { 33 30 $this->_path = $this->_slug . '/php/AdapterAddOn.php'; … … 38 35 } 39 36 40 /**41 * Statically gets the instance of this add-on.42 */43 37 public static function get_instance(): AdapterAddOn { 44 38 static $instance; … … 51 45 } 52 46 53 /**54 * Adds the plugin actions.55 */56 47 public function init(): void { 57 48 $email_setting = EmailSettingFactory::create(); -
adapter-gravity-add-on/tags/2.0.1/php/EmailForm.php
r3072082 r3072101 54 54 } 55 55 56 /** 57 * Whether to append a form to the content. 58 */ 56 /** Whether to append a form to the content. */ 59 57 public function do_append_form_to_content( array $form ): bool { 60 58 return ( -
adapter-gravity-add-on/tags/2.0.1/php/EmailSetting.php
r3072082 r3072101 17 17 public $bottom_of_post = 'aga_bottom_of_post'; 18 18 19 /** Add the filters for the class. */19 /** Adds the filters for the class. */ 20 20 public function init(): void { 21 21 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 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit ae8122e6b133bdbf6f77a5ed6b55aa62::getLoader();25 return ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20::getLoader(); -
adapter-gravity-add-on/tags/2.0.1/vendor/composer/autoload_real.php
r3072082 r3072101 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit ae8122e6b133bdbf6f77a5ed6b55aa625 class ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit ae8122e6b133bdbf6f77a5ed6b55aa62', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit ae8122e6b133bdbf6f77a5ed6b55aa62', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit ae8122e6b133bdbf6f77a5ed6b55aa62::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
adapter-gravity-add-on/tags/2.0.1/vendor/composer/autoload_static.php
r3072082 r3072101 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit ae8122e6b133bdbf6f77a5ed6b55aa627 class ComposerStaticInit927012ad2714b67e12fe260d0be0ad20 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 34 34 { 35 35 return \Closure::bind(function () use ($loader) { 36 $loader->prefixLengthsPsr4 = ComposerStaticInit ae8122e6b133bdbf6f77a5ed6b55aa62::$prefixLengthsPsr4;37 $loader->prefixDirsPsr4 = ComposerStaticInit ae8122e6b133bdbf6f77a5ed6b55aa62::$prefixDirsPsr4;38 $loader->classMap = ComposerStaticInit ae8122e6b133bdbf6f77a5ed6b55aa62::$classMap;36 $loader->prefixLengthsPsr4 = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$prefixLengthsPsr4; 37 $loader->prefixDirsPsr4 = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$prefixDirsPsr4; 38 $loader->classMap = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$classMap; 39 39 40 40 }, null, ClassLoader::class); -
adapter-gravity-add-on/tags/2.0.1/vendor/composer/installed.php
r3072082 r3072101 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
adapter-gravity-add-on/trunk/README.md
r3072082 r3072101 5 5 Tested up to: 6.5 6 6 Requires at least: 6.4 7 Stable tag: 2.0. 07 Stable tag: 2.0.1 8 8 Requires PHP: 8.0 9 9 License: GPLv2 or later … … 30 30 ### What does this require? 31 31 32 Gravity Forms 1.9 or higher. This is tested up to Gravity Forms 2.2.5.32 Gravity Forms 2.8.0 or higher. 33 33 34 34 ## Screenshots … … 38 38 39 39 ## Changelog 40 41 ### 2.0.1 42 * Fixed: Remove the 'Requires Plugins' header value. 40 43 41 44 ### 2.0.0 -
adapter-gravity-add-on/trunk/adapter-gravity-add-on.php
r3072082 r3072101 8 8 * Plugin URI: https://github.com/kienstra/adapter-gravity-add-on 9 9 * 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. 010 * Version: 2.0.1 11 11 * Requires at least: 6.4 12 12 * Requires PHP: 8.0 13 * Requires Plugins: gravityforms14 13 * Author: Ryan Kienstra 15 14 * Author URI: https://ryankienstra.com -
adapter-gravity-add-on/trunk/php/AdapterAddOn.php
r3072082 r3072101 22 22 */ 23 23 class AdapterAddOn extends GFAddOn { 24 public $_version = '2.0. 0';24 public $_version = '2.0.1'; 25 25 public $_min_gravityforms_version = '2.8.0'; 26 26 public $_slug = 'adapter-gravity-add-on'; 27 27 public $_full_path = __FILE__; 28 28 29 /**30 * Assigns the add-on properties.31 */32 29 public function __construct() { 33 30 $this->_path = $this->_slug . '/php/AdapterAddOn.php'; … … 38 35 } 39 36 40 /**41 * Statically gets the instance of this add-on.42 */43 37 public static function get_instance(): AdapterAddOn { 44 38 static $instance; … … 51 45 } 52 46 53 /**54 * Adds the plugin actions.55 */56 47 public function init(): void { 57 48 $email_setting = EmailSettingFactory::create(); -
adapter-gravity-add-on/trunk/php/EmailForm.php
r3072082 r3072101 54 54 } 55 55 56 /** 57 * Whether to append a form to the content. 58 */ 56 /** Whether to append a form to the content. */ 59 57 public function do_append_form_to_content( array $form ): bool { 60 58 return ( -
adapter-gravity-add-on/trunk/php/EmailSetting.php
r3072082 r3072101 17 17 public $bottom_of_post = 'aga_bottom_of_post'; 18 18 19 /** Add the filters for the class. */19 /** Adds the filters for the class. */ 20 20 public function init(): void { 21 21 add_filter( 'gform_form_settings_fields', [ $this, 'add_bottom_of_post_setting' ] ); -
adapter-gravity-add-on/trunk/vendor/autoload.php
r3072082 r3072101 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit ae8122e6b133bdbf6f77a5ed6b55aa62::getLoader();25 return ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20::getLoader(); -
adapter-gravity-add-on/trunk/vendor/composer/autoload_real.php
r3072082 r3072101 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit ae8122e6b133bdbf6f77a5ed6b55aa625 class ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit ae8122e6b133bdbf6f77a5ed6b55aa62', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit ae8122e6b133bdbf6f77a5ed6b55aa62', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit927012ad2714b67e12fe260d0be0ad20', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit ae8122e6b133bdbf6f77a5ed6b55aa62::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
adapter-gravity-add-on/trunk/vendor/composer/autoload_static.php
r3072082 r3072101 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit ae8122e6b133bdbf6f77a5ed6b55aa627 class ComposerStaticInit927012ad2714b67e12fe260d0be0ad20 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 34 34 { 35 35 return \Closure::bind(function () use ($loader) { 36 $loader->prefixLengthsPsr4 = ComposerStaticInit ae8122e6b133bdbf6f77a5ed6b55aa62::$prefixLengthsPsr4;37 $loader->prefixDirsPsr4 = ComposerStaticInit ae8122e6b133bdbf6f77a5ed6b55aa62::$prefixDirsPsr4;38 $loader->classMap = ComposerStaticInit ae8122e6b133bdbf6f77a5ed6b55aa62::$classMap;36 $loader->prefixLengthsPsr4 = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$prefixLengthsPsr4; 37 $loader->prefixDirsPsr4 = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$prefixDirsPsr4; 38 $loader->classMap = ComposerStaticInit927012ad2714b67e12fe260d0be0ad20::$classMap; 39 39 40 40 }, null, ClassLoader::class); -
adapter-gravity-add-on/trunk/vendor/composer/installed.php
r3072082 r3072101 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.