Plugin Directory

Changeset 3418048


Ignore:
Timestamp:
12/12/2025 09:13:30 AM (41 hours ago)
Author:
Hostinger
Message:

Adding new trunk - 1.3.1

Location:
hostinger-reach/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • hostinger-reach/trunk/changelog.txt

    r3417071 r3418048  
    155155- Fix: Add missing title in WooCommerce Checkout Form
    156156- Fix: Tweak title in Forminator forms
     157
     1581.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  
    44 * Plugin URI:        https://hostinger.com
    55 * Description:       Integrate your WordPress site with Hostinger Reach.
    6  * Version:           1.3.0
     6 * Version:           1.3.1
    77 * Author:            Hostinger
    88 * Requires PHP:      8.0
     
    2626}
    2727
    28 define( 'HOSTINGER_REACH_PLUGIN_VERSION', '1.3.0' );
     28define( 'HOSTINGER_REACH_PLUGIN_VERSION', '1.3.1' );
    2929define( 'HOSTINGER_REACH_DB_VERSION', '1.2.1' );
    3030define( 'HOSTINGER_REACH_MINIMUM_PHP_VERSION', '8.0' );
  • hostinger-reach/trunk/readme.txt

    r3417071 r3418048  
    55Requires PHP: 8.0
    66Tested up to: 6.9
    7 Stable tag: 1.3.0
     7Stable tag: 1.3.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    314314- Fix: Add missing title in WooCommerce Checkout Form
    315315- Fix: Tweak title in Forminator forms
     316
     3171.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  
    9292
    9393    private function get_status_from_summary( array $summary ): string {
    94         $has_any_importing = array_find(
     94        $has_any_importing = $this->array_find(
    9595            $summary,
    9696            function ( $item ) {
     
    120120        }
    121121    }
     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    }
    122143}
  • hostinger-reach/trunk/vendor/composer/installed.php

    r3417071 r3418048  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '1ab72a5d109d27b91fdb24c945486fd9c6bc2502',
     6        'reference' => '705673fc8482927426f96689ed5f4938f184f1fc',
    77        'type' => 'plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2525            'pretty_version' => 'dev-main',
    2626            'version' => 'dev-main',
    27             'reference' => '1ab72a5d109d27b91fdb24c945486fd9c6bc2502',
     27            'reference' => '705673fc8482927426f96689ed5f4938f184f1fc',
    2828            'type' => 'plugin',
    2929            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.