-
Notifications
You must be signed in to change notification settings - Fork 0
/
RCP_ZarinGate.php
566 lines (453 loc) · 22.6 KB
/
RCP_ZarinGate.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
<?php
/*
Plugin Name: درگاه پرداخت زرین گیت برای Restrict Content Pro
Version: 3.0.0
Requires at least: 4.0
Description: درگاه پرداخت <a href="http://www.zarinpal.com/" target="_blank"> زرین گیت </a> برای افزونه Restrict Content Pro | از سری محصولات وب سایت <a href="http://webforest.ir">وب فارست</a>
Plugin URI: http://webforest.ir/
Author: حنّان ابراهیمی ستوده
Author URI: http://hannanstd.ir/
License: GPL 2
*/
if (!defined('ABSPATH')) exit;
require_once('HANNANStd_Session.php');
if (!class_exists('RCP_ZarinGate') ) {
class RCP_ZarinGate {
public function __construct() {
add_action('init', array($this, 'ZarinGate_Verify_By_HANNANStd'));
add_action('rcp_payments_settings', array($this, 'ZarinGate_Setting_By_HANNANStd'));
add_action('rcp_gateway_ZarinGate', array($this, 'ZarinGate_Request_By_HANNANStd'));
add_filter('rcp_payment_gateways', array($this, 'ZarinGate_Register_By_HANNANStd'));
if (!function_exists('RCP_IRAN_Currencies_By_HANNANStd') && !function_exists('RCP_IRAN_Currencies'))
add_filter('rcp_currencies', array($this, 'RCP_IRAN_Currencies_By_HANNANStd'));
}
public function RCP_IRAN_Currencies_By_HANNANStd( $currencies ) {
unset($currencies['RIAL']);
$currencies['تومان'] = __('تومان', 'rcp_zaringate');
$currencies['ریال'] = __('ریال', 'rcp_zaringate');
return $currencies;
}
public function ZarinGate_Register_By_HANNANStd($gateways) {
global $rcp_options;
if( version_compare( RCP_PLUGIN_VERSION, '2.1.0', '<' ) ) {
$gateways['ZarinGate'] = isset($rcp_options['zaringate_name']) ? $rcp_options['zaringate_name'] : __( 'زرین گیت', 'rcp_zaringate');
}
else {
$gateways['ZarinGate'] = array(
'label' => isset($rcp_options['zaringate_name']) ? $rcp_options['zaringate_name'] : __( 'زرین گیت', 'rcp_zaringate'),
'admin_label' => isset($rcp_options['zaringate_name']) ? $rcp_options['zaringate_name'] : __( 'زرین گیت', 'rcp_zaringate'),
);
}
return $gateways;
}
public function ZarinGate_Setting_By_HANNANStd($rcp_options) {
?>
<hr/>
<table class="form-table">
<?php do_action( 'RCP_ZarinGate_before_settings', $rcp_options ); ?>
<tr valign="top">
<th colspan=2><h3><?php _e( 'تنظیمات زرین گیت', 'rcp_zaringate' ); ?></h3></th>
</tr>
<tr valign="top">
<th>
<label for="rcp_settings[zaringate_server]"><?php _e( 'سرور زرین گیت', 'rcp_zaringate' ); ?></label>
</th>
<td>
<select id="rcp_settings[zaringate_server]" name="rcp_settings[zaringate_server]">
<option value="German" <?php selected('German', isset($rcp_options['zaringate_server']) ? $rcp_options['zaringate_server'] : '' ); ?>><?php _e( 'آلمان', 'rcp_zaringate' ); ?></option>
<option value="Iran" <?php selected('Iran', isset($rcp_options['zaringate_server']) ? $rcp_options['zaringate_server'] : '' ); ?>><?php _e( 'ایران', 'rcp_zaringate' ); ?></option>
</select>
</td>
</tr>
<tr valign="top">
<th>
<label for="rcp_settings[zaringate_merchant]"><?php _e( 'مرچنت زرین گیت', 'rcp_zaringate' ); ?></label>
</th>
<td>
<input class="regular-text" id="rcp_settings[zaringate_merchant]" style="width: 300px;" name="rcp_settings[zaringate_merchant]" value="<?php if( isset( $rcp_options['zaringate_merchant'] ) ) { echo $rcp_options['zaringate_merchant']; } ?>"/>
</td>
</tr>
<tr valign="top">
<th>
<label for="rcp_settings[zaringate_query_name]"><?php _e( 'نام لاتین درگاه', 'rcp_zaringate' ); ?></label>
</th>
<td>
<input class="regular-text" id="rcp_settings[zaringate_query_name]" style="width: 300px;" name="rcp_settings[zaringate_query_name]" value="<?php echo isset($rcp_options['zaringate_query_name']) ? $rcp_options['zaringate_query_name'] : 'ZarinGate'; ?>"/>
<div class="description"><?php _e( 'این نام در هنگام بازگشت از بانک در آدرس بازگشت از بانک نمایان خواهد شد . از به کاربردن حروف زائد و فاصله جدا خودداری نمایید . این نام باید با نام سایر درگاه ها متفاوت باشد .', 'rcp_zaringate' ); ?></div>
</td>
</tr>
<tr valign="top">
<th>
<label for="rcp_settings[zaringate_name]"><?php _e( 'نام نمایشی درگاه', 'rcp_zaringate' ); ?></label>
</th>
<td>
<input class="regular-text" id="rcp_settings[zaringate_name]" style="width: 300px;" name="rcp_settings[zaringate_name]" value="<?php echo isset($rcp_options['zaringate_name']) ? $rcp_options['zaringate_name'] : __( 'زرین گیت', 'rcp_zaringate'); ?>"/>
</td>
</tr>
<tr valign="top">
<th>
<label><?php _e( 'تذکر ', 'rcp_zaringate' ); ?></label>
</th>
<td>
<div class="description"><?php _e( 'از سربرگ مربوط به ثبت نام در تنظیمات افزونه حتما یک برگه برای بازگشت از بانک انتخاب نمایید . ترجیحا نامک برگه را لاتین قرار دهید .<br/> نیازی به قرار دادن شورت کد خاصی در برگه نیست و میتواند برگه ی خالی باشد .', 'rcp_zaringate' ); ?></div>
</td>
</tr>
<?php do_action( 'RCP_ZarinGate_after_settings', $rcp_options ); ?>
</table>
<?php
}
public function ZarinGate_Request_By_HANNANStd($subscription_data) {
$new_subscription_id = get_user_meta( $subscription_data['user_id'], 'rcp_subscription_level' , true );
if ( !empty( $new_subscription_id )) {
update_user_meta( $subscription_data['user_id'], 'rcp_subscription_level_new', $new_subscription_id );
}
$old_subscription_id = get_user_meta( $subscription_data['user_id'], 'rcp_subscription_level_old' , true );
update_user_meta( $subscription_data['user_id'], 'rcp_subscription_level', $old_subscription_id );
global $rcp_options;
ob_start();
$query = isset($rcp_options['zaringate_query_name']) ? $rcp_options['zaringate_query_name'] : 'ZarinGate';
$amount = str_replace( ',', '', $subscription_data['price']);
//fee is just for paygate recurring or ipn gateway ....
//$amount = $subscription_data['price'] + $subscription_data['fee'];
$zaringate_payment_data = array(
'user_id' => $subscription_data['user_id'],
'subscription_name' => $subscription_data['subscription_name'],
'subscription_key' => $subscription_data['key'],
'amount' => $amount
);
$HANNANStd_session = HANNAN_Session::get_instance();
@session_start();
$HANNANStd_session['zaringate_payment_data'] = $zaringate_payment_data;
$_SESSION["zaringate_payment_data"] = $zaringate_payment_data;
//Action For ZarinGate or RCP Developers...
do_action( 'RCP_Before_Sending_to_ZarinGate', $subscription_data );
if ($rcp_options['currency'] == 'ریال' || $rcp_options['currency'] == 'RIAL' || $rcp_options['currency'] == 'ریال ایران' || $rcp_options['currency'] == 'Iranian Rial (﷼)')
$amount = $amount/10;
//Start of ZarinGate
$MerchantID = isset($rcp_options['zaringate_merchant']) ? $rcp_options['zaringate_merchant'] : '';
$Amount = intval($amount);
$Email = isset($subscription_data['user_email']) ? $subscription_data['user_email'] : '-';
$CallbackURL = add_query_arg('gateway', $query, $subscription_data['return_url']);
$Description = sprintf(__('خرید اشتراک %s برای کاربر %s', 'rcp_zaringate'), $subscription_data['subscription_name'],$subscription_data['user_name']);
$Mobile ='-';
//Filter For ZarinGate or RCP Developers...
$Description = apply_filters( 'RCP_ZarinGate_Description', $Description, $subscription_data );
$Mobile = apply_filters( 'RCP_Mobile', $Mobile, $subscription_data );
if( isset( $rcp_options['zaringate_server'] ) and ($rcp_options['zaringate_server'] == 'Iran') )
{
$WebServiceUrl = 'https://ir.zarinpal.com/pg/services/WebGate/wsdl';
}
else
{
$WebServiceUrl = 'https://de.zarinpal.com/pg/services/WebGate/wsdl';
}
$client = new SoapClient( $WebServiceUrl , array('encoding' => 'UTF-8'));
$result = $client->PaymentRequest(
array(
'MerchantID' => $MerchantID,
'Amount' => $Amount,
'Description' => $Description,
'Email' => $Email,
'Mobile' => $Mobile,
'CallbackURL' => $CallbackURL
)
);
if($result->Status == 100)
{
ob_end_clean();
if (!headers_sent()) {
header('Location: https://www.zarinpal.com/pg/StartPay/'.$result->Authority.'/ZarinGate');
exit;
}
else {
$redirect_page = 'https://www.zarinpal.com/pg/StartPay/'.$result->Authority.'/ZarinGate';
echo "<script type='text/javascript'>window.onload = function () { top.location.href = '" . $redirect_page . "'; };</script>";
exit;
}
}
else
{
wp_die( sprintf(__('متاسفانه پرداخت به دلیل خطای زیر امکان پذیر نمی باشد . <br/><b> %s </b>', 'rcp_zaringate'), $this->Fault($result->Status)) );
}
//End of ZarinGate
exit;
}
public function ZarinGate_Verify_By_HANNANStd() {
if (!isset($_GET['gateway']))
return;
if ( !class_exists('RCP_Payments') )
return;
global $rcp_options, $wpdb, $rcp_payments_db_name;
@session_start();
$HANNANStd_session = HANNAN_Session::get_instance();
if (isset($HANNANStd_session['zaringate_payment_data']))
$zaringate_payment_data = $HANNANStd_session['zaringate_payment_data'];
else
$zaringate_payment_data = isset($_SESSION["zaringate_payment_data"]) ? $_SESSION["zaringate_payment_data"] : '';
$query = isset($rcp_options['zaringate_query_name']) ? $rcp_options['zaringate_query_name'] : 'ZarinGate';
if ( ($_GET['gateway'] == $query) && $zaringate_payment_data )
{
$user_id = $zaringate_payment_data['user_id'];
$user_id = intval($user_id);
$subscription_name = $zaringate_payment_data['subscription_name'];
$subscription_key = $zaringate_payment_data['subscription_key'];
$amount = $zaringate_payment_data['amount'];
/*
$subscription_price = intval(number_format( (float) rcp_get_subscription_price( rcp_get_subscription_id( $user_id ) ), 2)) ;
*/
$payment_method = isset($rcp_options['zaringate_name']) ? $rcp_options['zaringate_name'] : __( 'زرین گیت', 'rcp_zaringate');
$new_payment = 1;
if( $wpdb->get_results( $wpdb->prepare("SELECT id FROM " . $rcp_payments_db_name . " WHERE `subscription_key`='%s' AND `payment_type`='%s';", $subscription_key, $payment_method ) ) )
$new_payment = 0;
unset($GLOBALS['zaringate_new']);
$GLOBALS['zaringate_new'] = $new_payment;
global $new;
$new = $new_payment;
if ($new_payment == 1) {
//Start of ZarinGate
$MerchantID = isset($rcp_options['zaringate_merchant']) ? $rcp_options['zaringate_merchant'] : '';
$Amount = intval($amount);
if ($rcp_options['currency'] == 'ریال' || $rcp_options['currency'] == 'RIAL' || $rcp_options['currency'] == 'ریال ایران' || $rcp_options['currency'] == 'Iranian Rial (﷼)')
$Amount = $Amount/10;
$Authority = $_GET['Authority'];
if( isset( $rcp_options['zaringate_server'] ) and ($rcp_options['zaringate_server'] == 'Iran') )
{
$WebServiceUrl = 'https://ir.zarinpal.com/pg/services/WebGate/wsdl';
}
else
{
$WebServiceUrl = 'https://de.zarinpal.com/pg/services/WebGate/wsdl';
}
if($_GET['Status'] == 'OK'){
$client = new SoapClient( $WebServiceUrl , array('encoding' => 'UTF-8'));
$result = $client->PaymentVerification(
array(
'MerchantID' => $MerchantID,
'Authority' => $Authority,
'Amount' => $Amount
)
);
if($result->Status == 100){
$payment_status = 'completed';
$fault = 0;
$transaction_id = $result->RefID;
}
else {
$payment_status = 'failed';
$fault = $result->Status;
$transaction_id = 0;
}
}
else {
$payment_status = 'cancelled';
$fault = 0;
$transaction_id = 0;
}
//End of ZarinGate
unset($GLOBALS['zaringate_payment_status']);
unset($GLOBALS['zaringate_transaction_id']);
unset($GLOBALS['zaringate_fault']);
unset($GLOBALS['zaringate_subscription_key']);
$GLOBALS['zaringate_payment_status'] = $payment_status;
$GLOBALS['zaringate_transaction_id'] = $transaction_id;
$GLOBALS['zaringate_subscription_key'] = $subscription_key;
$GLOBALS['zaringate_fault'] = $fault;
global $zaringate_transaction;
$zaringate_transaction = array();
$zaringate_transaction['zaringate_payment_status'] = $payment_status;
$zaringate_transaction['zaringate_transaction_id'] = $transaction_id;
$zaringate_transaction['zaringate_subscription_key'] = $subscription_key;
$zaringate_transaction['zaringate_fault'] = $fault;
if ($payment_status == 'completed')
{
$payment_data = array(
'date' => date('Y-m-d g:i:s'),
'subscription' => $subscription_name,
'payment_type' => $payment_method,
'subscription_key' => $subscription_key,
'amount' => $amount,
'user_id' => $user_id,
'transaction_id' => $transaction_id
);
//Action For ZarinGate or RCP Developers...
do_action( 'RCP_ZarinGate_Insert_Payment', $payment_data, $user_id );
$rcp_payments = new RCP_Payments();
$rcp_payments->insert( $payment_data );
$new_subscription_id = get_user_meta( $user_id, 'rcp_subscription_level_new' , true );
if ( !empty( $new_subscription_id )) {
update_user_meta( $user_id, 'rcp_subscription_level', $new_subscription_id );
}
rcp_set_status( $user_id, 'active' );
if( version_compare( RCP_PLUGIN_VERSION, '2.1.0', '<' ) ) {
rcp_email_subscription_status( $user_id, 'active' );
if( ! isset( $rcp_options['disable_new_user_notices'] ) )
wp_new_user_notification( $user_id );
}
update_user_meta( $user_id, 'rcp_payment_profile_id', $user_id );
update_user_meta( $user_id, 'rcp_signup_method', 'live' );
//rcp_recurring is just for paygate or ipn gateway
update_user_meta( $user_id, 'rcp_recurring', 'no' );
$subscription = rcp_get_subscription_details( rcp_get_subscription_id( $user_id ) );
$member_new_expiration = date( 'Y-m-d H:i:s', strtotime( '+' . $subscription->duration . ' ' . $subscription->duration_unit . ' 23:59:59' ) );
rcp_set_expiration_date( $user_id, $member_new_expiration );
delete_user_meta( $user_id, '_rcp_expired_email_sent' );
$log_data = array(
'post_title' => __( 'تایید پرداخت', 'rcp_zaringate' ),
'post_content' => __( 'پرداخت با موفقیت انجام شد . کد تراکنش : ', 'rcp_zaringate' ).$transaction_id.__( ' . روش پرداخت : ', 'rcp_zaringate' ).$payment_method,
'post_parent' => 0,
'log_type' => 'gateway_error'
);
$log_meta = array(
'user_subscription' => $subscription_name,
'user_id' => $user_id
);
$log_entry = WP_Logging::insert_log( $log_data, $log_meta );
//Action For ZarinGate or RCP Developers...
do_action( 'RCP_ZarinGate_Completed', $user_id );
}
if ($payment_status == 'cancelled')
{
$log_data = array(
'post_title' => __( 'انصراف از پرداخت', 'rcp_zaringate' ),
'post_content' => __( 'تراکنش به دلیل انصراف کاربر از پرداخت ، ناتمام باقی ماند .', 'rcp_zaringate' ).__( ' روش پرداخت : ', 'rcp_zaringate' ).$payment_method,
'post_parent' => 0,
'log_type' => 'gateway_error'
);
$log_meta = array(
'user_subscription' => $subscription_name,
'user_id' => $user_id
);
$log_entry = WP_Logging::insert_log( $log_data, $log_meta );
//Action For ZarinGate or RCP Developers...
do_action( 'RCP_ZarinGate_Cancelled', $user_id );
}
if ($payment_status == 'failed')
{
$log_data = array(
'post_title' => __( 'خطا در پرداخت', 'rcp_zaringate' ),
'post_content' => __( 'تراکنش به دلیل خطای رو به رو ناموفق باقی باند :', 'rcp_zaringate' ).$this->Fault($fault).__( ' روش پرداخت : ', 'rcp_zaringate' ).$payment_method,
'post_parent' => 0,
'log_type' => 'gateway_error'
);
$log_meta = array(
'user_subscription' => $subscription_name,
'user_id' => $user_id
);
$log_entry = WP_Logging::insert_log( $log_data, $log_meta );
//Action For ZarinGate or RCP Developers...
do_action( 'RCP_ZarinGate_Failed', $user_id );
}
}
add_filter( 'the_content', array($this, 'ZarinGate_Content_After_Return_By_HANNANStd') );
//session_destroy();
}
}
public function ZarinGate_Content_After_Return_By_HANNANStd( $content ) {
global $zaringate_transaction, $new;
$HANNANStd_session = HANNAN_Session::get_instance();
@session_start();
$new_payment = isset($GLOBALS['zaringate_new']) ? $GLOBALS['zaringate_new'] : $new;
$payment_status = isset($GLOBALS['zaringate_payment_status']) ? $GLOBALS['zaringate_payment_status'] : $zaringate_transaction['zaringate_payment_status'];
$transaction_id = isset($GLOBALS['zaringate_transaction_id']) ? $GLOBALS['zaringate_transaction_id'] : $zaringate_transaction['zaringate_transaction_id'];
$fault = isset($GLOBALS['zaringate_fault']) ? $this->Fault($GLOBALS['zaringate_fault']) : $this->Fault($zaringate_transaction['zaringate_fault']);
if ($new_payment == 1)
{
$zaringate_data = array(
'payment_status' => $payment_status,
'transaction_id' => $transaction_id,
'fault' => $fault
);
$HANNANStd_session['zaringate_data'] = $zaringate_data;
$_SESSION["zaringate_data"] = $zaringate_data;
}
else
{
if (isset($HANNANStd_session['zaringate_data']))
$zaringate_payment_data = $HANNANStd_session['zaringate_data'];
else
$zaringate_payment_data = isset($_SESSION["zaringate_data"]) ? $_SESSION["zaringate_data"] : '';
$payment_status = isset($zaringate_payment_data['payment_status']) ? $zaringate_payment_data['payment_status'] : '';
$transaction_id = isset($zaringate_payment_data['transaction_id']) ? $zaringate_payment_data['transaction_id'] : '';
$fault = isset($zaringate_payment_data['fault']) ? $this->Fault($zaringate_payment_data['fault']) : '';
}
$message = '';
if ($payment_status == 'completed') {
$message = '<br/>'.__( 'پرداخت با موفقیت انجام شد . کد تراکنش : ', 'rcp_zaringate' ).$transaction_id.'<br/>';
}
if ($payment_status == 'cancelled') {
$message = '<br/>'.__( 'تراکنش به دلیل انصراف شما نا تمام باقی ماند .', 'rcp_zaringate' );
}
if ($payment_status == 'failed') {
$message = '<br/>'.__( 'تراکنش به دلیل خطای زیر ناموفق باقی باند :', 'rcp_zaringate' ).'<br/>'.$fault.'<br/>';
}
return $content.$message;
}
private static function Fault($error) {
$response = '';
switch($error){
case '-1' :
$response = __( 'اطلاعات ارسال شده ناقص است .', 'rcp_zaringate' );
break;
case '-2' :
$response = __( 'آی پی یا مرچنت زرین گیت اشتباه است .', 'rcp_zaringate' );
break;
case '-3' :
$response = __( 'با توجه به محدودیت های شاپرک امکان پرداخت با رقم درخواست شده میسر نمیباشد .', 'rcp_zaringate' );
break;
case '-4' :
$response = __( 'سطح تایید پذیرنده پایین تر از سطح نقره ای میباشد .', 'rcp_zaringate' );
break;
case '-11' :
$response = __( 'درخواست مورد نظر یافت نشد .', 'rcp_zaringate' );
break;
case '-21' :
$response = __( 'هیچ نوع عملیات مالی برای این تراکنش یافت نشد .', 'rcp_zaringate' );
break;
case '-22' :
$response = __( 'تراکنش نا موفق میباشد .', 'rcp_zaringate' );
break;
case '-33' :
$response = __( 'رقم تراکنش با رقم وارد شده مطابقت ندارد .', 'rcp_zaringate' );
break;
case '-40' :
$response = __( 'اجازه دسترسی به متد مورد نظر وجود ندارد .', 'rcp_zaringate' );
break;
case '-54' :
$response = __( 'درخواست مورد نظر آرشیو شده است .', 'rcp_zaringate' );
break;
case '100' :
$response = __( 'اتصال با زرین گیت به خوبی برقرار شد و همه چیز صحیح است .', 'rcp_zaringate' );
break;
case '101' :
$response = __( 'تراکنش با موفقیت به پایان رسیده بود و تاییدیه آن نیز انجام شده بود .', 'rcp_zaringate' );
break;
}
return $response;
}
}
}
new RCP_ZarinGate();
if ( !function_exists('change_cancelled_to_pending_By_HANNANStd')) {
add_action( 'rcp_set_status', 'change_cancelled_to_pending_By_HANNANStd', 10, 2 );
function change_cancelled_to_pending_By_HANNANStd( $status, $user_id ) {
if( 'cancelled' == $status )
rcp_set_status( $user_id, 'expired' );
return true;
}
}
if ( !function_exists('RCP_User_Registration_Data_By_HANNANStd') && !function_exists('RCP_User_Registration_Data') ) {
add_filter('rcp_user_registration_data', 'RCP_User_Registration_Data_By_HANNANStd' );
function RCP_User_Registration_Data_By_HANNANStd( $user ) {
$old_subscription_id = get_user_meta( $user['id'], 'rcp_subscription_level' , true );
if ( !empty( $old_subscription_id )) {
update_user_meta( $user['id'], 'rcp_subscription_level_old', $old_subscription_id );
}
$user_info = get_userdata($user['id']);
$old_user_role = implode(', ', $user_info->roles);
if ( !empty( $old_user_role )) {
update_user_meta( $user['id'], 'rcp_user_role_old', $old_user_role );
}
return $user;
}
}
?>