Changeset 2625099
- Timestamp:
- 11/05/2021 01:29:29 PM (4 years ago)
- Location:
- smaily-for-wp
- Files:
-
- 16 edited
- 1 copied
-
tags/3.0.7 (copied) (copied from smaily-for-wp/trunk)
-
tags/3.0.7/includes/class-smaily-for-wp-widget.php (modified) (3 diffs)
-
tags/3.0.7/readme.txt (modified) (2 diffs)
-
tags/3.0.7/smaily-for-wp.php (modified) (2 diffs)
-
tags/3.0.7/vendor/autoload.php (modified) (1 diff)
-
tags/3.0.7/vendor/composer/InstalledVersions.php (modified) (1 diff)
-
tags/3.0.7/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/3.0.7/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/3.0.7/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/includes/class-smaily-for-wp-widget.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/smaily-for-wp.php (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/InstalledVersions.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smaily-for-wp/tags/3.0.7/includes/class-smaily-for-wp-widget.php
r2485930 r2625099 10 10 11 11 /** 12 * A rray of autoresponders.13 * 14 * @since 3.0. 012 * Admin model. 13 * 14 * @since 3.0.7 15 15 * @access private 16 * @var array $autoresponders Used to populate the autoresponder <select> field.17 */ 18 private $a utoresponders;16 * @var Smaily_For_WP_Admin 17 */ 18 private $admin_model; 19 19 20 20 /** … … 38 38 parent::__construct( 'smaily_subscription_widget', __( 'Smaily Newsletter Subscription', 'smaily-for-wp' ), $widget_ops ); 39 39 40 $this->options = $options;41 $this->a utoresponders = $admin_model->get_autoresponders();40 $this->options = $options; 41 $this->admin_model = $admin_model; 42 42 } 43 43 … … 198 198 <select id="' . $autoresponder_id . '" name="' . $autoresponder . '"> 199 199 <option value="">' . esc_html__( 'No autoresponder', 'smaily-for-wp' ) . '</option>'; 200 foreach ( $this->a utorespondersas $id => $title ) {200 foreach ( $this->admin_model->get_autoresponders() as $id => $title ) { 201 201 echo '<option value="' . esc_attr( $id ) . '"' . selected( $instance['autoresponder'], $id, false ) . '>' . esc_attr( $title ) . '</option>'; 202 202 } -
smaily-for-wp/tags/3.0.7/readme.txt
r2614685 r2625099 4 4 Requires PHP: 5.6 5 5 Requires at least: 4.0 6 Stable tag: 3.0. 66 Stable tag: 3.0.7 7 7 Tags: widget, plugin, sidebar, api, mail, email, marketing, smaily 8 8 Tested up to: 5.8.0 … … 77 77 == Changelog == 78 78 79 = 3.0.7 = 80 - Fix automation workflows being fetched on every operation in WordPress. 81 79 82 = 3.0.6 = 80 83 - Update user manual links. -
smaily-for-wp/tags/3.0.7/smaily-for-wp.php
r2614685 r2625099 10 10 * Text Domain: smaily-for-wp 11 11 * Description: Smaily newsletter subscription form. 12 * Version: 3.0. 612 * Version: 3.0.7 13 13 * Author: Sendsmaily LLC 14 14 * Author URI: https://smaily.com … … 25 25 * Current plugin version. 26 26 */ 27 define( 'SMLY4WP_PLUGIN_VERSION', '3.0. 6' );27 define( 'SMLY4WP_PLUGIN_VERSION', '3.0.7' ); 28 28 29 29 /** -
smaily-for-wp/tags/3.0.7/vendor/autoload.php
r2614685 r2625099 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit b44af31b0ef1e125427a8881b938ec32::getLoader();7 return ComposerAutoloaderInit88c0474316a09b223d787fb04022e877::getLoader(); -
smaily-for-wp/tags/3.0.7/vendor/composer/InstalledVersions.php
r2614685 r2625099 25 25 class InstalledVersions 26 26 { 27 /** 28 * @var mixed[]|null 29 * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null 30 */ 27 31 private static $installed; 32 33 /** 34 * @var bool|null 35 */ 28 36 private static $canGetVendors; 37 38 /** 39 * @var array[] 40 * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}> 41 */ 29 42 private static $installedByVendor = array(); 30 43 -
smaily-for-wp/tags/3.0.7/vendor/composer/autoload_real.php
r2614685 r2625099 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit b44af31b0ef1e125427a8881b938ec325 class ComposerAutoloaderInit88c0474316a09b223d787fb04022e877 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit b44af31b0ef1e125427a8881b938ec32', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit88c0474316a09b223d787fb04022e877', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 27 spl_autoload_unregister(array('ComposerAutoloaderInit b44af31b0ef1e125427a8881b938ec32', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit88c0474316a09b223d787fb04022e877', 'loadClassLoader')); 28 28 29 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 31 31 require __DIR__ . '/autoload_static.php'; 32 32 33 call_user_func(\Composer\Autoload\ComposerStaticInit b44af31b0ef1e125427a8881b938ec32::getInitializer($loader));33 call_user_func(\Composer\Autoload\ComposerStaticInit88c0474316a09b223d787fb04022e877::getInitializer($loader)); 34 34 } else { 35 35 $map = require __DIR__ . '/autoload_namespaces.php'; -
smaily-for-wp/tags/3.0.7/vendor/composer/autoload_static.php
r2614685 r2625099 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit b44af31b0ef1e125427a8881b938ec327 class ComposerStaticInit88c0474316a09b223d787fb04022e877 8 8 { 9 9 public static $classMap = array ( … … 14 14 { 15 15 return \Closure::bind(function () use ($loader) { 16 $loader->classMap = ComposerStaticInit b44af31b0ef1e125427a8881b938ec32::$classMap;16 $loader->classMap = ComposerStaticInit88c0474316a09b223d787fb04022e877::$classMap; 17 17 18 18 }, null, ClassLoader::class); -
smaily-for-wp/tags/3.0.7/vendor/composer/installed.php
r2614685 r2625099 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '3.0. 6',4 'version' => '3.0. 6.0',3 'pretty_version' => '3.0.7', 4 'version' => '3.0.7.0', 5 5 'type' => 'plugin', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 1f53a4f1a842f33c3248ea23e587d748afa8bdb5',8 'reference' => 'fa56715956b0051386be20ffb4993a7539c91528', 9 9 'name' => 'smaily/smaily_for_wp', 10 10 'dev' => false, … … 12 12 'versions' => array( 13 13 'smaily/smaily_for_wp' => array( 14 'pretty_version' => '3.0. 6',15 'version' => '3.0. 6.0',14 'pretty_version' => '3.0.7', 15 'version' => '3.0.7.0', 16 16 'type' => 'plugin', 17 17 'install_path' => __DIR__ . '/../../', 18 18 'aliases' => array(), 19 'reference' => ' 1f53a4f1a842f33c3248ea23e587d748afa8bdb5',19 'reference' => 'fa56715956b0051386be20ffb4993a7539c91528', 20 20 'dev_requirement' => false, 21 21 ), -
smaily-for-wp/trunk/includes/class-smaily-for-wp-widget.php
r2485930 r2625099 10 10 11 11 /** 12 * A rray of autoresponders.13 * 14 * @since 3.0. 012 * Admin model. 13 * 14 * @since 3.0.7 15 15 * @access private 16 * @var array $autoresponders Used to populate the autoresponder <select> field.17 */ 18 private $a utoresponders;16 * @var Smaily_For_WP_Admin 17 */ 18 private $admin_model; 19 19 20 20 /** … … 38 38 parent::__construct( 'smaily_subscription_widget', __( 'Smaily Newsletter Subscription', 'smaily-for-wp' ), $widget_ops ); 39 39 40 $this->options = $options;41 $this->a utoresponders = $admin_model->get_autoresponders();40 $this->options = $options; 41 $this->admin_model = $admin_model; 42 42 } 43 43 … … 198 198 <select id="' . $autoresponder_id . '" name="' . $autoresponder . '"> 199 199 <option value="">' . esc_html__( 'No autoresponder', 'smaily-for-wp' ) . '</option>'; 200 foreach ( $this->a utorespondersas $id => $title ) {200 foreach ( $this->admin_model->get_autoresponders() as $id => $title ) { 201 201 echo '<option value="' . esc_attr( $id ) . '"' . selected( $instance['autoresponder'], $id, false ) . '>' . esc_attr( $title ) . '</option>'; 202 202 } -
smaily-for-wp/trunk/readme.txt
r2614685 r2625099 4 4 Requires PHP: 5.6 5 5 Requires at least: 4.0 6 Stable tag: 3.0. 66 Stable tag: 3.0.7 7 7 Tags: widget, plugin, sidebar, api, mail, email, marketing, smaily 8 8 Tested up to: 5.8.0 … … 77 77 == Changelog == 78 78 79 = 3.0.7 = 80 - Fix automation workflows being fetched on every operation in WordPress. 81 79 82 = 3.0.6 = 80 83 - Update user manual links. -
smaily-for-wp/trunk/smaily-for-wp.php
r2614685 r2625099 10 10 * Text Domain: smaily-for-wp 11 11 * Description: Smaily newsletter subscription form. 12 * Version: 3.0. 612 * Version: 3.0.7 13 13 * Author: Sendsmaily LLC 14 14 * Author URI: https://smaily.com … … 25 25 * Current plugin version. 26 26 */ 27 define( 'SMLY4WP_PLUGIN_VERSION', '3.0. 6' );27 define( 'SMLY4WP_PLUGIN_VERSION', '3.0.7' ); 28 28 29 29 /** -
smaily-for-wp/trunk/vendor/autoload.php
r2614685 r2625099 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit b44af31b0ef1e125427a8881b938ec32::getLoader();7 return ComposerAutoloaderInit88c0474316a09b223d787fb04022e877::getLoader(); -
smaily-for-wp/trunk/vendor/composer/InstalledVersions.php
r2614685 r2625099 25 25 class InstalledVersions 26 26 { 27 /** 28 * @var mixed[]|null 29 * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null 30 */ 27 31 private static $installed; 32 33 /** 34 * @var bool|null 35 */ 28 36 private static $canGetVendors; 37 38 /** 39 * @var array[] 40 * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}> 41 */ 29 42 private static $installedByVendor = array(); 30 43 -
smaily-for-wp/trunk/vendor/composer/autoload_real.php
r2614685 r2625099 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit b44af31b0ef1e125427a8881b938ec325 class ComposerAutoloaderInit88c0474316a09b223d787fb04022e877 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit b44af31b0ef1e125427a8881b938ec32', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit88c0474316a09b223d787fb04022e877', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 27 spl_autoload_unregister(array('ComposerAutoloaderInit b44af31b0ef1e125427a8881b938ec32', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit88c0474316a09b223d787fb04022e877', 'loadClassLoader')); 28 28 29 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 31 31 require __DIR__ . '/autoload_static.php'; 32 32 33 call_user_func(\Composer\Autoload\ComposerStaticInit b44af31b0ef1e125427a8881b938ec32::getInitializer($loader));33 call_user_func(\Composer\Autoload\ComposerStaticInit88c0474316a09b223d787fb04022e877::getInitializer($loader)); 34 34 } else { 35 35 $map = require __DIR__ . '/autoload_namespaces.php'; -
smaily-for-wp/trunk/vendor/composer/autoload_static.php
r2614685 r2625099 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit b44af31b0ef1e125427a8881b938ec327 class ComposerStaticInit88c0474316a09b223d787fb04022e877 8 8 { 9 9 public static $classMap = array ( … … 14 14 { 15 15 return \Closure::bind(function () use ($loader) { 16 $loader->classMap = ComposerStaticInit b44af31b0ef1e125427a8881b938ec32::$classMap;16 $loader->classMap = ComposerStaticInit88c0474316a09b223d787fb04022e877::$classMap; 17 17 18 18 }, null, ClassLoader::class); -
smaily-for-wp/trunk/vendor/composer/installed.php
r2614685 r2625099 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '3.0. 6',4 'version' => '3.0. 6.0',3 'pretty_version' => '3.0.7', 4 'version' => '3.0.7.0', 5 5 'type' => 'plugin', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 1f53a4f1a842f33c3248ea23e587d748afa8bdb5',8 'reference' => 'fa56715956b0051386be20ffb4993a7539c91528', 9 9 'name' => 'smaily/smaily_for_wp', 10 10 'dev' => false, … … 12 12 'versions' => array( 13 13 'smaily/smaily_for_wp' => array( 14 'pretty_version' => '3.0. 6',15 'version' => '3.0. 6.0',14 'pretty_version' => '3.0.7', 15 'version' => '3.0.7.0', 16 16 'type' => 'plugin', 17 17 'install_path' => __DIR__ . '/../../', 18 18 'aliases' => array(), 19 'reference' => ' 1f53a4f1a842f33c3248ea23e587d748afa8bdb5',19 'reference' => 'fa56715956b0051386be20ffb4993a7539c91528', 20 20 'dev_requirement' => false, 21 21 ),
Note: See TracChangeset
for help on using the changeset viewer.