includes/class-give-db-donors.php 1 location
|
@@ 124-126 (lines=3) @@
|
| 121 |
|
return false; |
| 122 |
|
} |
| 123 |
|
|
| 124 |
|
if ( ! empty( $args['payment_ids'] ) && is_array( $args['payment_ids'] ) ) { |
| 125 |
|
$args['payment_ids'] = implode( ',', array_unique( array_values( $args['payment_ids'] ) ) ); |
| 126 |
|
} |
| 127 |
|
|
| 128 |
|
$donor = $this->get_donor_by( 'email', $args['email'] ); |
| 129 |
|
|
includes/class-give-donor.php 1 location
|
@@ 376-378 (lines=3) @@
|
| 373 |
|
return false; |
| 374 |
|
} |
| 375 |
|
|
| 376 |
|
if ( ! empty( $args['payment_ids'] ) && is_array( $args['payment_ids'] ) ) { |
| 377 |
|
$args['payment_ids'] = implode( ',', array_unique( array_values( $args['payment_ids'] ) ) ); |
| 378 |
|
} |
| 379 |
|
|
| 380 |
|
/** |
| 381 |
|
* Fires before creating donors. |