Plugin Directory

Changeset 2977225

Timestamp:
10/10/2023 09:41:32 PM (10 months ago)
Author:
jason_the_adams
Message:

Update to version 2.33.5 from GitHub

Location:
give
Files:
106 edited
1 copied

Legend:

Unmodified
Added
Removed
  • give/tags/2.33.5/give.php

    r2974851 r2977225  
    77 * Author: GiveWP
    88 * Author URI: https://givewp.com/
    9  * Version: 2.33.4
     9 * Version: 2.33.
    1010 * Requires at least: 5.0
    1111 * Requires PHP: 7.0
     
    317317        // Plugin version.
    318318        if (!defined('GIVE_VERSION')) {
    319             define('GIVE_VERSION', '2.33.4');
     319            define('GIVE_VERSION', '2.33.');
    320320        }
    321321
  • give/tags/2.33.5/includes/gateways/stripe/includes/give-stripe-helpers.php

    r2960109 r2977225  
    1111 */
    1212
    13 use Give\Log\Log;
    1413use Give\PaymentGateways\Exceptions\InvalidPropertyName;
    15 use Give\PaymentGateways\Stripe\Models\AccountDetail;
    1614use Give\PaymentGateways\Stripe\Repositories\Settings;
    1715use Give\ValueObjects\Money;
     
    14761474 * This function is used to get single ip address for Stripe.
    14771475 *
    1478  * @since 2.7.0
    1479  *
    1480  * @return string
     1476 * @since      2.7.0
     1477 *
     1478 * @return string
     1479 *
     1480 * @deprecated 2.33.5 Use give_get_ip method to get the single IP address.
    14811481 */
    14821482function give_stripe_get_ip_address() {
    1483 
    1484     $ip_address_details = explode( ',', give_get_ip() );
    1485 
    1486     return $ip_address_details[0];
     1483    return give_get_ip();
    14871484}
    14881485
  • give/tags/2.33.5/includes/misc-functions.php

    r2905363 r2977225  
    146146 * Returns the IP address of the current visitor
    147147 *
     148
     149
     150
    148151 * @return string $ip User's IP address
    149  * @since 1.0
    150  */
    151 function give_get_ip() {
    152 
    153     $ip = '127.0.0.1';
     152 *
     153function give_get_ip($single = true)
     154{
     155    $ip_addresses = '127.0.0.1';
     156';
    154157
    155158    if ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
    156159        // check ip from share internet
    157         $ip = $_SERVER['HTTP_CLIENT_IP'];
     160        $ip_addresses = $_SERVER['HTTP_CLIENT_IP'];
     161        $header_type = 'HTTP_CLIENT_IP';
    158162    } elseif ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
    159163        // to check ip is pass from proxy
    160         $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
     164        $ip_addresses = $_SERVER['HTTP_X_FORWARDED_FOR'];
     165        $header_type = 'HTTP_X_FORWARDED_FOR';
    161166    } elseif ( ! empty( $_SERVER['REMOTE_ADDR'] ) ) {
    162         $ip = $_SERVER['REMOTE_ADDR'];
     167        $ip_addresses = $_SERVER['REMOTE_ADDR'];
     168        $header_type = 'REMOTE_ADDR';
    163169    }
    164170
     
    166172     * Filter the IP
    167173     *
    168      * @since 1.0
     174     * @since 2.33.5 Add $single and $header_type params.
     175     * @since      1.0
    169176     */
    170     $ip = apply_filters( 'give_get_ip', $ip );
     177);
    171178
    172179    // Filter empty values.
    173     if ( false !== strpos( $ip, ',' ) ) {
    174         $ip = give_clean( explode( ',', $ip ) );
    175         $ip = array_filter( $ip );
    176         $ip = implode( ',', $ip );
     180) {
     181);
     182);
     183);
    177184    } else {
    178         $ip = give_clean( $ip );
    179     }
    180 
    181     return $ip;
     185        $ip_addresses = give_clean($ip_addresses);
     186    }
     187
     188    if ($single && false !== strpos($ip_addresses, ',')) {
     189        return explode(',', $ip_addresses)[0];
     190    }
     191
     192    return $ip_addresses;
    182193}
    183194
  • give/tags/2.33.5/languages/give.pot

    r2974851 r2977225  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Give - Donation Plugin 2.33.4\n"
     5"Project-Id-Version: Give - Donation Plugin 2.33.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/givewp\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-10-04T16:10:57+00:00\n"
     12"POT-Creation-Date: 2023-10-+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.8.1\n"
     
    15941594
    15951595#: includes/admin/emails/class-email-access-email.php:45
    1596 #: includes/misc-functions.php:1570
     1596#: includes/misc-functions.php:15
    15971597msgid "Confirm Email"
    15981598msgstr ""
     
    56375637
    56385638#: includes/admin/tools/import/class-give-import-core-settings.php:472
    5639 #: includes/misc-functions.php:1532
     5639#: includes/misc-functions.php:15
    56405640msgid "Please upload or provide a valid JSON file."
    56415641msgstr ""
     
    1341713417#: includes/gateways/stripe/includes/class-give-stripe-gateway.php:468
    1341813418#: includes/gateways/stripe/includes/class-give-stripe-logger.php:77
    13419 #: includes/gateways/stripe/includes/give-stripe-helpers.php:590
    13420 #: includes/gateways/stripe/includes/give-stripe-helpers.php:656
    13421 #: includes/gateways/stripe/includes/give-stripe-helpers.php:821
     13419#: includes/gateways/stripe/includes/give-stripe-helpers.php:5
     13420#: includes/gateways/stripe/includes/give-stripe-helpers.php:65
     13421#: includes/gateways/stripe/includes/give-stripe-helpers.php:8
    1342213422msgid "Stripe Error"
    1342313423msgstr ""
     
    1375013750#: includes/gateways/stripe/includes/class-give-stripe-gateway.php:322
    1375113751#: includes/gateways/stripe/includes/class-give-stripe-gateway.php:388
    13752 #: includes/gateways/stripe/includes/give-stripe-helpers.php:663
     13752#: includes/gateways/stripe/includes/give-stripe-helpers.php:66
    1375313753msgid "An error occurred while processing the donation. Please try again."
    1375413754msgstr ""
     
    1396313963msgstr ""
    1396413964
    13965 #: includes/gateways/stripe/includes/give-stripe-helpers.php:513
     13965#: includes/gateways/stripe/includes/give-stripe-helpers.php:51
    1396613966msgid "-- N/A --"
    1396713967msgstr ""
    1396813968
    1396913969#. translators: %s Exception Error Message
    13970 #: includes/gateways/stripe/includes/give-stripe-helpers.php:593
     13970#: includes/gateways/stripe/includes/give-stripe-helpers.php:59
    1397113971msgid "Unable to set application information to Stripe. Details: %s"
    1397213972msgstr ""
    1397313973
    13974 #: includes/gateways/stripe/includes/give-stripe-helpers.php:598
     13974#: includes/gateways/stripe/includes/give-stripe-helpers.php:59
    1397513975msgid "Unable to set application information to Stripe. Please try again."
    1397613976msgstr ""
    1397713977
    1397813978#. translators: %s Exception Message Body
    13979 #: includes/gateways/stripe/includes/give-stripe-helpers.php:659
     13979#: includes/gateways/stripe/includes/give-stripe-helpers.php:65
    1398013980msgid "Unable to set Stripe API Key. Details: %s"
    1398113981msgstr ""
    1398213982
    13983 #: includes/gateways/stripe/includes/give-stripe-helpers.php:965
     13983#: includes/gateways/stripe/includes/give-stripe-helpers.php:96
    1398413984msgid "Stripe Customer Creation Failed"
    1398513985msgstr ""
    1398613986
    1398713987#. translators: %s Donation Data
    13988 #: includes/gateways/stripe/includes/give-stripe-helpers.php:968
     13988#: includes/gateways/stripe/includes/give-stripe-helpers.php:96
    1398913989msgid "Customer creation failed while processing the donation. Details: %s"
    1399013990msgstr ""
    1399113991
    13992 #: includes/gateways/stripe/includes/give-stripe-helpers.php:972
     13992#: includes/gateways/stripe/includes/give-stripe-helpers.php:97
    1399313993msgid "The Stripe Gateway returned an error while processing the donation."
    1399413994msgstr ""
    1399513995
    13996 #: includes/gateways/stripe/includes/give-stripe-helpers.php:1160
     13996#: includes/gateways/stripe/includes/give-stripe-helpers.php:11
    1399713997msgid "By providing your IBAN and confirming this payment, you are authorizing %1$s and Stripe, our payment service provider, to send instructions to your bank to debit your account and your bank to debit your account in accordance with those instructions. You are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited."
    1399813998msgstr ""
    1399913999
    14000 #: includes/gateways/stripe/includes/give-stripe-helpers.php:1167
     14000#: includes/gateways/stripe/includes/give-stripe-helpers.php:116
    1400114001msgid "By providing your bank account details and confirming this payment, you agree to this Direct Debit Request and the <a href=\"%1$s\" target=\"_blank\">Direct Debit Request service agreement</a>, and authorize Stripe Payments Australia Pty Ltd ACN 160 180 343 Direct Debit User ID number 507156 (“Stripe”) to debit your account through the Bulk Electronic Clearing System (BECS) on behalf of %2$s (the “Merchant”) for any amounts separately communicated to you by the Merchant. You certify that you are either an account holder or an authorized signatory on the account listed above."
    1400214002msgstr ""
    1400314003
     14004
     14005
     14006
     14007
    1400414008#: includes/gateways/stripe/includes/give-stripe-helpers.php:1504
    14005 msgid "Give - Stripe Error"
    14006 msgstr ""
    14007 
    14008 #: includes/gateways/stripe/includes/give-stripe-helpers.php:1507
    1400914009msgid "Unable to retrieve account details. Please contact support for assistance. Details:"
    1401014010msgstr ""
     
    1413714137msgstr ""
    1413814138
    14139 #: includes/misc-functions.php:308
     14139#: includes/misc-functions.php:3
    1414014140#: src/Framework/PaymentGateways/DonationSummary.php:78
    1414114141msgid "Donation Form ID: %d"
    1414214142msgstr ""
    1414314143
    14144 #: includes/misc-functions.php:308
     14144#: includes/misc-functions.php:3
    1414514145msgid "Untitled donation form"
    1414614146msgstr ""
    1414714147
    14148 #: includes/misc-functions.php:423
     14148#: includes/misc-functions.php:4
    1414914149msgid "%1$s is <strong>deprecated</strong> since GiveWP version %2$s! Use %3$s instead."
    1415014150msgstr ""
    1415114151
    14152 #: includes/misc-functions.php:427
     14152#: includes/misc-functions.php:4
    1415314153msgid "%1$s is <strong>deprecated</strong> since GiveWP version %2$s with no alternative available."
    1415414154msgstr ""
    1415514155
    14156 #: includes/misc-functions.php:525
     14156#: includes/misc-functions.php:5
    1415714157#: includes/post-types.php:56
    1415814158#: src/DonationForms/V2/DonationFormsAdminPage.php:42
     
    1416114161msgstr ""
    1416214162
    14163 #: includes/misc-functions.php:1564
     14163#: includes/misc-functions.php:15
    1416414164msgid "For security reasons, please confirm your email address (%s) to view your complete donation history."
    1416514165msgstr ""
    1416614166
    14167 #: includes/misc-functions.php:1572
     14167#: includes/misc-functions.php:15
    1416814168msgid "Email Sent!"
    1416914169msgstr ""
    1417014170
    14171 #: includes/misc-functions.php:1611
     14171#: includes/misc-functions.php:16
    1417214172msgid "%1$s was called <strong>incorrectly</strong>. %2$s"
    1417314173msgstr ""
    1417414174
    14175 #: includes/misc-functions.php:2205
    14176 #: includes/misc-functions.php:2245
     14175#: includes/misc-functions.php:22
     14176#: includes/misc-functions.php:22
    1417714177msgid "View the receipt in your browser &raquo;"
    1417814178msgstr ""
    1417914179
    14180 #: includes/misc-functions.php:2322
     14180#: includes/misc-functions.php:23
    1418114181msgid "You are trying to access invalid donation receipt. Please try again."
    1418214182msgstr ""
    1418314183
    14184 #: includes/misc-functions.php:2343
     14184#: includes/misc-functions.php:23
    1418514185msgid "You must be logged in to view this donation receipt."
    1418614186msgstr ""
  • give/tags/2.33.5/readme.txt

    r2974851 r2977225  
    66Tested up to: 6.3
    77Requires PHP: 7.0
    8 Stable tag: 2.33.4
     8Stable tag: 2.33.
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    259259
    260260== Changelog ==
     261
     262
     263
    261264= 2.33.4: October 4th, 2023 =
    262265* Fix: Update old sendwp buttons and remove unused Stripe disconnect function.
  • give/tags/2.33.5/src/PaymentGateways/Gateways/Stripe/BECSGateway.php

    r2937928 r2977225  
    114114
    115115    /**
     116
    116117     * @since 2.19.0
    117118     * @return array
     
    126127                    'type' => 'online',
    127128                    'online' => [
    128                         'ip_address' => give_stripe_get_ip_address(),
     129                        'ip_address' => give_(),
    129130                        'user_agent' => give_get_user_agent(),
    130131                    ],
  • give/tags/2.33.5/src/PaymentGateways/Gateways/Stripe/SEPAGateway.php

    r2937928 r2977225  
    116116
    117117    /**
     118
    118119     * @since 2.19.0
    119120     * @return array
     
    128129                    'type' => 'online',
    129130                    'online' => [
    130                         'ip_address' => give_stripe_get_ip_address(),
     131                        'ip_address' => give_(),
    131132                        'user_agent' => give_get_user_agent(),
    132133                    ],
  • give/tags/2.33.5/vendor/composer/installed.php

    r2974851 r2977225  
    22    'root' => array(
    33        'name' => 'impress-org/give',
    4         'pretty_version' => '2.33.4',
    5         'version' => '2.33.4.0',
    6         'reference' => '5706ef91380d8c9728bd11c1e798bb2def438d5f',
     4        'pretty_version' => '2.33.',
     5        'version' => '2.33..0',
     6        'reference' => '',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    4242        ),
    4343        'impress-org/give' => array(
    44             'pretty_version' => '2.33.4',
    45             'version' => '2.33.4.0',
    46             'reference' => '5706ef91380d8c9728bd11c1e798bb2def438d5f',
     44            'pretty_version' => '2.33.',
     45            'version' => '2.33..0',
     46            'reference' => '',
    4747            'type' => 'wordpress-plugin',
    4848            'install_path' => __DIR__ . '/../../',
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/field-conditions/src/ComplexConditionSet.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/field-conditions/src/Concerns/HasConditions.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/field-conditions/src/Concerns/HasLogicalOperator.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/field-conditions/src/Config.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/field-conditions/src/Contracts/Condition.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/field-conditions/src/Contracts/ConditionSet.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/field-conditions/src/FieldCondition.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/field-conditions/src/NestedCondition.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/field-conditions/src/SimpleConditionSet.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Commands/ExcludeValue.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Commands/SkipValidationRules.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Concerns/HasValidationRules.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Config.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Contracts/Sanitizer.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Contracts/ValidatesOnFrontEnd.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Contracts/ValidationRule.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Exceptions/Contracts/ValidationExceptionInterface.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Exceptions/ValidationException.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Abstracts/ConditionalRule.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Boolean.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Currency.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/DateTime.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Email.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Exclude.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/ExcludeIf.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/ExcludeUnless.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/In.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/InStrict.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Integer.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Max.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Min.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Nullable.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/NullableIf.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/NullableUnless.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Numeric.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Optional.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/OptionalIf.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/OptionalUnless.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Required.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Size.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/ServiceProvider.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/ValidationRuleSet.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/ValidationRulesRegistrar.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/tags/2.33.5/vendor/vendor-prefixed/stellarwp/validation/src/Validator.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/give.php

    r2974851 r2977225  
    77 * Author: GiveWP
    88 * Author URI: https://givewp.com/
    9  * Version: 2.33.4
     9 * Version: 2.33.
    1010 * Requires at least: 5.0
    1111 * Requires PHP: 7.0
     
    317317        // Plugin version.
    318318        if (!defined('GIVE_VERSION')) {
    319             define('GIVE_VERSION', '2.33.4');
     319            define('GIVE_VERSION', '2.33.');
    320320        }
    321321
  • give/trunk/includes/gateways/stripe/includes/give-stripe-helpers.php

    r2960109 r2977225  
    1111 */
    1212
    13 use Give\Log\Log;
    1413use Give\PaymentGateways\Exceptions\InvalidPropertyName;
    15 use Give\PaymentGateways\Stripe\Models\AccountDetail;
    1614use Give\PaymentGateways\Stripe\Repositories\Settings;
    1715use Give\ValueObjects\Money;
     
    14761474 * This function is used to get single ip address for Stripe.
    14771475 *
    1478  * @since 2.7.0
    1479  *
    1480  * @return string
     1476 * @since      2.7.0
     1477 *
     1478 * @return string
     1479 *
     1480 * @deprecated 2.33.5 Use give_get_ip method to get the single IP address.
    14811481 */
    14821482function give_stripe_get_ip_address() {
    1483 
    1484     $ip_address_details = explode( ',', give_get_ip() );
    1485 
    1486     return $ip_address_details[0];
     1483    return give_get_ip();
    14871484}
    14881485
  • give/trunk/includes/misc-functions.php

    r2905363 r2977225  
    146146 * Returns the IP address of the current visitor
    147147 *
     148
     149
     150
    148151 * @return string $ip User's IP address
    149  * @since 1.0
    150  */
    151 function give_get_ip() {
    152 
    153     $ip = '127.0.0.1';
     152 *
     153function give_get_ip($single = true)
     154{
     155    $ip_addresses = '127.0.0.1';
     156';
    154157
    155158    if ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
    156159        // check ip from share internet
    157         $ip = $_SERVER['HTTP_CLIENT_IP'];
     160        $ip_addresses = $_SERVER['HTTP_CLIENT_IP'];
     161        $header_type = 'HTTP_CLIENT_IP';
    158162    } elseif ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
    159163        // to check ip is pass from proxy
    160         $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
     164        $ip_addresses = $_SERVER['HTTP_X_FORWARDED_FOR'];
     165        $header_type = 'HTTP_X_FORWARDED_FOR';
    161166    } elseif ( ! empty( $_SERVER['REMOTE_ADDR'] ) ) {
    162         $ip = $_SERVER['REMOTE_ADDR'];
     167        $ip_addresses = $_SERVER['REMOTE_ADDR'];
     168        $header_type = 'REMOTE_ADDR';
    163169    }
    164170
     
    166172     * Filter the IP
    167173     *
    168      * @since 1.0
     174     * @since 2.33.5 Add $single and $header_type params.
     175     * @since      1.0
    169176     */
    170     $ip = apply_filters( 'give_get_ip', $ip );
     177);
    171178
    172179    // Filter empty values.
    173     if ( false !== strpos( $ip, ',' ) ) {
    174         $ip = give_clean( explode( ',', $ip ) );
    175         $ip = array_filter( $ip );
    176         $ip = implode( ',', $ip );
     180) {
     181);
     182);
     183);
    177184    } else {
    178         $ip = give_clean( $ip );
    179     }
    180 
    181     return $ip;
     185        $ip_addresses = give_clean($ip_addresses);
     186    }
     187
     188    if ($single && false !== strpos($ip_addresses, ',')) {
     189        return explode(',', $ip_addresses)[0];
     190    }
     191
     192    return $ip_addresses;
    182193}
    183194
  • give/trunk/languages/give.pot

    r2974851 r2977225  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Give - Donation Plugin 2.33.4\n"
     5"Project-Id-Version: Give - Donation Plugin 2.33.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/givewp\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-10-04T16:10:57+00:00\n"
     12"POT-Creation-Date: 2023-10-+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.8.1\n"
     
    15941594
    15951595#: includes/admin/emails/class-email-access-email.php:45
    1596 #: includes/misc-functions.php:1570
     1596#: includes/misc-functions.php:15
    15971597msgid "Confirm Email"
    15981598msgstr ""
     
    56375637
    56385638#: includes/admin/tools/import/class-give-import-core-settings.php:472
    5639 #: includes/misc-functions.php:1532
     5639#: includes/misc-functions.php:15
    56405640msgid "Please upload or provide a valid JSON file."
    56415641msgstr ""
     
    1341713417#: includes/gateways/stripe/includes/class-give-stripe-gateway.php:468
    1341813418#: includes/gateways/stripe/includes/class-give-stripe-logger.php:77
    13419 #: includes/gateways/stripe/includes/give-stripe-helpers.php:590
    13420 #: includes/gateways/stripe/includes/give-stripe-helpers.php:656
    13421 #: includes/gateways/stripe/includes/give-stripe-helpers.php:821
     13419#: includes/gateways/stripe/includes/give-stripe-helpers.php:5
     13420#: includes/gateways/stripe/includes/give-stripe-helpers.php:65
     13421#: includes/gateways/stripe/includes/give-stripe-helpers.php:8
    1342213422msgid "Stripe Error"
    1342313423msgstr ""
     
    1375013750#: includes/gateways/stripe/includes/class-give-stripe-gateway.php:322
    1375113751#: includes/gateways/stripe/includes/class-give-stripe-gateway.php:388
    13752 #: includes/gateways/stripe/includes/give-stripe-helpers.php:663
     13752#: includes/gateways/stripe/includes/give-stripe-helpers.php:66
    1375313753msgid "An error occurred while processing the donation. Please try again."
    1375413754msgstr ""
     
    1396313963msgstr ""
    1396413964
    13965 #: includes/gateways/stripe/includes/give-stripe-helpers.php:513
     13965#: includes/gateways/stripe/includes/give-stripe-helpers.php:51
    1396613966msgid "-- N/A --"
    1396713967msgstr ""
    1396813968
    1396913969#. translators: %s Exception Error Message
    13970 #: includes/gateways/stripe/includes/give-stripe-helpers.php:593
     13970#: includes/gateways/stripe/includes/give-stripe-helpers.php:59
    1397113971msgid "Unable to set application information to Stripe. Details: %s"
    1397213972msgstr ""
    1397313973
    13974 #: includes/gateways/stripe/includes/give-stripe-helpers.php:598
     13974#: includes/gateways/stripe/includes/give-stripe-helpers.php:59
    1397513975msgid "Unable to set application information to Stripe. Please try again."
    1397613976msgstr ""
    1397713977
    1397813978#. translators: %s Exception Message Body
    13979 #: includes/gateways/stripe/includes/give-stripe-helpers.php:659
     13979#: includes/gateways/stripe/includes/give-stripe-helpers.php:65
    1398013980msgid "Unable to set Stripe API Key. Details: %s"
    1398113981msgstr ""
    1398213982
    13983 #: includes/gateways/stripe/includes/give-stripe-helpers.php:965
     13983#: includes/gateways/stripe/includes/give-stripe-helpers.php:96
    1398413984msgid "Stripe Customer Creation Failed"
    1398513985msgstr ""
    1398613986
    1398713987#. translators: %s Donation Data
    13988 #: includes/gateways/stripe/includes/give-stripe-helpers.php:968
     13988#: includes/gateways/stripe/includes/give-stripe-helpers.php:96
    1398913989msgid "Customer creation failed while processing the donation. Details: %s"
    1399013990msgstr ""
    1399113991
    13992 #: includes/gateways/stripe/includes/give-stripe-helpers.php:972
     13992#: includes/gateways/stripe/includes/give-stripe-helpers.php:97
    1399313993msgid "The Stripe Gateway returned an error while processing the donation."
    1399413994msgstr ""
    1399513995
    13996 #: includes/gateways/stripe/includes/give-stripe-helpers.php:1160
     13996#: includes/gateways/stripe/includes/give-stripe-helpers.php:11
    1399713997msgid "By providing your IBAN and confirming this payment, you are authorizing %1$s and Stripe, our payment service provider, to send instructions to your bank to debit your account and your bank to debit your account in accordance with those instructions. You are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited."
    1399813998msgstr ""
    1399913999
    14000 #: includes/gateways/stripe/includes/give-stripe-helpers.php:1167
     14000#: includes/gateways/stripe/includes/give-stripe-helpers.php:116
    1400114001msgid "By providing your bank account details and confirming this payment, you agree to this Direct Debit Request and the <a href=\"%1$s\" target=\"_blank\">Direct Debit Request service agreement</a>, and authorize Stripe Payments Australia Pty Ltd ACN 160 180 343 Direct Debit User ID number 507156 (“Stripe”) to debit your account through the Bulk Electronic Clearing System (BECS) on behalf of %2$s (the “Merchant”) for any amounts separately communicated to you by the Merchant. You certify that you are either an account holder or an authorized signatory on the account listed above."
    1400214002msgstr ""
    1400314003
     14004
     14005
     14006
     14007
    1400414008#: includes/gateways/stripe/includes/give-stripe-helpers.php:1504
    14005 msgid "Give - Stripe Error"
    14006 msgstr ""
    14007 
    14008 #: includes/gateways/stripe/includes/give-stripe-helpers.php:1507
    1400914009msgid "Unable to retrieve account details. Please contact support for assistance. Details:"
    1401014010msgstr ""
     
    1413714137msgstr ""
    1413814138
    14139 #: includes/misc-functions.php:308
     14139#: includes/misc-functions.php:3
    1414014140#: src/Framework/PaymentGateways/DonationSummary.php:78
    1414114141msgid "Donation Form ID: %d"
    1414214142msgstr ""
    1414314143
    14144 #: includes/misc-functions.php:308
     14144#: includes/misc-functions.php:3
    1414514145msgid "Untitled donation form"
    1414614146msgstr ""
    1414714147
    14148 #: includes/misc-functions.php:423
     14148#: includes/misc-functions.php:4
    1414914149msgid "%1$s is <strong>deprecated</strong> since GiveWP version %2$s! Use %3$s instead."
    1415014150msgstr ""
    1415114151
    14152 #: includes/misc-functions.php:427
     14152#: includes/misc-functions.php:4
    1415314153msgid "%1$s is <strong>deprecated</strong> since GiveWP version %2$s with no alternative available."
    1415414154msgstr ""
    1415514155
    14156 #: includes/misc-functions.php:525
     14156#: includes/misc-functions.php:5
    1415714157#: includes/post-types.php:56
    1415814158#: src/DonationForms/V2/DonationFormsAdminPage.php:42
     
    1416114161msgstr ""
    1416214162
    14163 #: includes/misc-functions.php:1564
     14163#: includes/misc-functions.php:15
    1416414164msgid "For security reasons, please confirm your email address (%s) to view your complete donation history."
    1416514165msgstr ""
    1416614166
    14167 #: includes/misc-functions.php:1572
     14167#: includes/misc-functions.php:15
    1416814168msgid "Email Sent!"
    1416914169msgstr ""
    1417014170
    14171 #: includes/misc-functions.php:1611
     14171#: includes/misc-functions.php:16
    1417214172msgid "%1$s was called <strong>incorrectly</strong>. %2$s"
    1417314173msgstr ""
    1417414174
    14175 #: includes/misc-functions.php:2205
    14176 #: includes/misc-functions.php:2245
     14175#: includes/misc-functions.php:22
     14176#: includes/misc-functions.php:22
    1417714177msgid "View the receipt in your browser &raquo;"
    1417814178msgstr ""
    1417914179
    14180 #: includes/misc-functions.php:2322
     14180#: includes/misc-functions.php:23
    1418114181msgid "You are trying to access invalid donation receipt. Please try again."
    1418214182msgstr ""
    1418314183
    14184 #: includes/misc-functions.php:2343
     14184#: includes/misc-functions.php:23
    1418514185msgid "You must be logged in to view this donation receipt."
    1418614186msgstr ""
  • give/trunk/readme.txt

    r2974851 r2977225  
    66Tested up to: 6.3
    77Requires PHP: 7.0
    8 Stable tag: 2.33.4
     8Stable tag: 2.33.
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    259259
    260260== Changelog ==
     261
     262
     263
    261264= 2.33.4: October 4th, 2023 =
    262265* Fix: Update old sendwp buttons and remove unused Stripe disconnect function.
  • give/trunk/src/PaymentGateways/Gateways/Stripe/BECSGateway.php

    r2937928 r2977225  
    114114
    115115    /**
     116
    116117     * @since 2.19.0
    117118     * @return array
     
    126127                    'type' => 'online',
    127128                    'online' => [
    128                         'ip_address' => give_stripe_get_ip_address(),
     129                        'ip_address' => give_(),
    129130                        'user_agent' => give_get_user_agent(),
    130131                    ],
  • give/trunk/src/PaymentGateways/Gateways/Stripe/SEPAGateway.php

    r2937928 r2977225  
    116116
    117117    /**
     118
    118119     * @since 2.19.0
    119120     * @return array
     
    128129                    'type' => 'online',
    129130                    'online' => [
    130                         'ip_address' => give_stripe_get_ip_address(),
     131                        'ip_address' => give_(),
    131132                        'user_agent' => give_get_user_agent(),
    132133                    ],
  • give/trunk/vendor/composer/installed.php

    r2974851 r2977225  
    22    'root' => array(
    33        'name' => 'impress-org/give',
    4         'pretty_version' => '2.33.4',
    5         'version' => '2.33.4.0',
    6         'reference' => '5706ef91380d8c9728bd11c1e798bb2def438d5f',
     4        'pretty_version' => '2.33.',
     5        'version' => '2.33..0',
     6        'reference' => '',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    4242        ),
    4343        'impress-org/give' => array(
    44             'pretty_version' => '2.33.4',
    45             'version' => '2.33.4.0',
    46             'reference' => '5706ef91380d8c9728bd11c1e798bb2def438d5f',
     44            'pretty_version' => '2.33.',
     45            'version' => '2.33..0',
     46            'reference' => '',
    4747            'type' => 'wordpress-plugin',
    4848            'install_path' => __DIR__ . '/../../',
  • give/trunk/vendor/vendor-prefixed/stellarwp/container-contract/src/ContainerInterface.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/field-conditions/src/ComplexConditionSet.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/field-conditions/src/Concerns/HasConditions.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/field-conditions/src/Concerns/HasLogicalOperator.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/field-conditions/src/Config.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/field-conditions/src/Contracts/Condition.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/field-conditions/src/Contracts/ConditionSet.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/field-conditions/src/FieldCondition.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/field-conditions/src/NestedCondition.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/field-conditions/src/SimpleConditionSet.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Commands/ExcludeValue.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Commands/SkipValidationRules.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Concerns/HasValidationRules.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Config.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Contracts/Sanitizer.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Contracts/ValidatesOnFrontEnd.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Contracts/ValidationRule.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Exceptions/Contracts/ValidationExceptionInterface.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Exceptions/ValidationException.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Abstracts/ConditionalRule.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Boolean.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Currency.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/DateTime.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Email.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Exclude.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/ExcludeIf.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/ExcludeUnless.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/In.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/InStrict.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Integer.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Max.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Min.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Nullable.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/NullableIf.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/NullableUnless.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Numeric.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Optional.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/OptionalIf.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/OptionalUnless.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Required.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Rules/Size.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/ServiceProvider.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/ValidationRuleSet.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/ValidationRulesRegistrar.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
  • give/trunk/vendor/vendor-prefixed/stellarwp/validation/src/Validator.php

    r2974851 r2977225  
    33 * @license GPL-2.0-or-later
    44 *
    5  * Modified by impress-org on 04-October-2023 using Strauss.
     5 * Modified by impress-org on -October-2023 using Strauss.
    66 * @see https://github.com/BrianHenryIE/strauss
    77 */
Note: See TracChangeset for help on using the changeset viewer.