includes/class-give-db-donors.php 1 location
|
@@ 118-120 (lines=3) @@
|
| 115 |
|
return false; |
| 116 |
|
} |
| 117 |
|
|
| 118 |
|
if ( ! empty( $args['payment_ids'] ) && is_array( $args['payment_ids'] ) ) { |
| 119 |
|
$args['payment_ids'] = implode( ',', array_unique( array_values( $args['payment_ids'] ) ) ); |
| 120 |
|
} |
| 121 |
|
|
| 122 |
|
$donor = $this->get_donor_by( 'email', $args['email'] ); |
| 123 |
|
|
includes/class-give-donor.php 1 location
|
@@ 268-270 (lines=3) @@
|
| 265 |
|
return false; |
| 266 |
|
} |
| 267 |
|
|
| 268 |
|
if ( ! empty( $args['payment_ids'] ) && is_array( $args['payment_ids'] ) ) { |
| 269 |
|
$args['payment_ids'] = implode( ',', array_unique( array_values( $args['payment_ids'] ) ) ); |
| 270 |
|
} |
| 271 |
|
|
| 272 |
|
/** |
| 273 |
|
* Fires before creating donors. |