Changeset 3418048
- Timestamp:
- 12/12/2025 09:13:30 AM (41 hours ago)
- Location:
- hostinger-reach/trunk
- Files:
-
- 5 edited
-
changelog.txt (modified) (1 diff)
-
hostinger-reach.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/Integrations/ImportManager.php (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hostinger-reach/trunk/changelog.txt
r3417071 r3418048 155 155 - Fix: Add missing title in WooCommerce Checkout Form 156 156 - Fix: Tweak title in Forminator forms 157 158 1.3.1 (2025-12-12) 159 160 - Fix: Fatal error when installing the plugin on WP < 6.8 + PHP < 8.4 -
hostinger-reach/trunk/hostinger-reach.php
r3417071 r3418048 4 4 * Plugin URI: https://hostinger.com 5 5 * Description: Integrate your WordPress site with Hostinger Reach. 6 * Version: 1.3. 06 * Version: 1.3.1 7 7 * Author: Hostinger 8 8 * Requires PHP: 8.0 … … 26 26 } 27 27 28 define( 'HOSTINGER_REACH_PLUGIN_VERSION', '1.3. 0' );28 define( 'HOSTINGER_REACH_PLUGIN_VERSION', '1.3.1' ); 29 29 define( 'HOSTINGER_REACH_DB_VERSION', '1.2.1' ); 30 30 define( 'HOSTINGER_REACH_MINIMUM_PHP_VERSION', '8.0' ); -
hostinger-reach/trunk/readme.txt
r3417071 r3418048 5 5 Requires PHP: 8.0 6 6 Tested up to: 6.9 7 Stable tag: 1.3. 07 Stable tag: 1.3.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 314 314 - Fix: Add missing title in WooCommerce Checkout Form 315 315 - Fix: Tweak title in Forminator forms 316 317 1.3.1 (2025-12-12) 318 319 - Fix: Fatal error when installing the plugin on WP < 6.8 + PHP < 8.4 -
hostinger-reach/trunk/src/Integrations/ImportManager.php
r3417071 r3418048 92 92 93 93 private function get_status_from_summary( array $summary ): string { 94 $has_any_importing = array_find(94 $has_any_importing = $this->array_find( 95 95 $summary, 96 96 function ( $item ) { … … 120 120 } 121 121 } 122 123 /** 124 * Polyfill for `array_find()` 125 * 126 * Searches an array for the first element that passes a given callback. 127 * 128 * @since 6.8.0 129 * 130 * @param array $array The array to search. 131 * @param callable $callback The callback to run for each element. 132 * @return mixed|null The first element in the array that passes the `$callback`, otherwise null. 133 */ 134 public function array_find( array $array, callable $callback ): mixed { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound 135 foreach ( $array as $key => $value ) { 136 if ( $callback( $value, $key ) ) { 137 return $value; 138 } 139 } 140 141 return null; 142 } 122 143 } -
hostinger-reach/trunk/vendor/composer/installed.php
r3417071 r3418048 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 1ab72a5d109d27b91fdb24c945486fd9c6bc2502',6 'reference' => '705673fc8482927426f96689ed5f4938f184f1fc', 7 7 'type' => 'plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 25 25 'pretty_version' => 'dev-main', 26 26 'version' => 'dev-main', 27 'reference' => ' 1ab72a5d109d27b91fdb24c945486fd9c6bc2502',27 'reference' => '705673fc8482927426f96689ed5f4938f184f1fc', 28 28 'type' => 'plugin', 29 29 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.