-
Notifications
You must be signed in to change notification settings - Fork 4
/
mobile-money.php
390 lines (312 loc) · 14.5 KB
/
mobile-money.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
<?php
/**
* Plugin Name: Mobile Money
* Plugin URI: https://mercipro.com/developpement-web/
* Description: Acceptez les paiements Mobile Money sur votre site pour maximiser vos ventes aux utilisateurs qui n'ont pas de cartes bancaire.
* Version: 1.2
* Author: MerciPro Inc
* Author URI: https://mercipro.com/
* Text Domain: mobilemoneyforwoocommerce
*/
if (!defined('ABSPATH')){
exit;
}
define('MMFWC_VER', '1.2');
if (! defined('MMFWC_PLUGIN_FILE')) {
define('MMFWC_PLUGIN_FILE', __FILE__);
}
add_action('wp', function (){
if (! in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))){
deactivate_plugins(plugin_basename(__FILE__));
}
});
// Ajouter le Plugin dans le Menu WordPress
add_action( 'admin_menu', 'mobile_money_for_woocommerce_menu' ); function mobile_money_for_woocommerce_menu() {
$page_title = 'Mobile Money For Woocommerce';
$menu_title = 'Mobile Money';
$capability = 'manage_options';
$menu_slug = 'wc-settings&tab=checkout§ion=mobile_money_for_woocommerce';
$function = 'mobile_money_for_woocommerce';
$icon_url = 'dashicons-smartphone';
$position = 4;
add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position );
}
// Ajouter le lien vers la Configuration et la Documentation du Plugin
add_filter('plugin_action_links_'.plugin_basename(__FILE__), 'mobile_money_for_woocommerce_action_links');
function mobile_money_for_woocommerce_action_links($links)
{
return array_merge(
$links, array(
'<a href="'.admin_url('admin.php?page=wc-
settings&tab=checkout§ion=mobile_money_for_woocommerce').'"> Configuration</a>',
'<a href="https://mercipro.com/developpement-web/"> Développeur</a>'
)
);
}
// Inscrire le Plugin dans la liste des Payment Gateways for Woocommerce
add_filter('woocommerce_payment_gateways', 'mobile_money_for_woocommerce_payment_gateways');
function mobile_money_for_woocommerce_payment_gateways( $gateways ){
$gateways[] = 'mobile_money_for_woocommerce';
return $gateways;
}
add_action('plugins_loaded', 'mobile_money_for_woocommerce_plugin_activation');
function mobile_money_for_woocommerce_plugin_activation(){
class mobile_money_for_woocommerce extends WC_Payment_Gateway {
public $MMFWC_number;
public $MMFWC_number2;
public $MMFWC_number3;
public $txt_description;
public $number_type;
public $order_status;
public $instructions;
public $domain;
public function __construct(){
// Domaine Principal
$this->domain = 'mobile_money';
$this->id = 'mobile_money_for_woocommerce';
// Titre du Plugin pris en charge par Woocommerce
$this->title = $this->get_option('title', 'Mobile Money');
// Description prise en charge par Woocommerce
$this->description = $this->get_option('description', 'Le moyen le plus simple d\'accepter les payements via Mobile Money');
// Titre affiché sur la page Réglage de Woocommerce
$this->method_title = __("Mobile Money", $this->domain);
// Description affichée sur la page Réglage de Woocommerce
$this->method_description = __("Accepter les payements via Mobile Money sur votre boutique en ligne pour maximiser vos ventes.", $this->domain );
$this->icon = plugins_url('images/mobilemoney.png', __FILE__);
$this->has_fields = true;
$this->mobile_money_for_woocommerce_options_fields();
$this->init_settings();
$this->MMFWC_number = $this->get_option('MMFWC_number');
$this->MMFWC_number2 = $this->get_option('MMFWC_number2');
$this->MMFWC_number3 = $this->get_option('MMFWC_number3');
$this->number_type = $this->get_option('number_type');
$this->txt_description = $this->get_option('txt_description');
$this->order_status = $this->get_option('order_status');
$this->instructions = $this->get_option('instructions');
add_action( 'woocommerce_update_options_payment_gateways_'.$this->id, array( $this, 'process_admin_options' ) );
add_filter( 'woocommerce_thankyou_order_received_text', array( $this, 'mobile_money_for_woocommerce_thankyou_page' ) );
add_action( 'woocommerce_email_before_order_table', array( $this, 'mobile_money_for_woocommerce_email_instructions' ), 10, 3 );
}
public function mobile_money_for_woocommerce_options_fields(){
$this->form_fields = array(
'enabled' => array(
'title' => __( 'Activer/Désactiver', $this->domain ),
'type' => 'checkbox',
'label' => __( 'Mobile Money for Woocommerce', $this->domain ),
'default' => 'yes'
),
'title' => array(
'title' => __( 'Titre', $this->domain ),
'type' => 'text',
'default' => __( 'Mobile Money', $this->domain )
),
'txt_description' => array(
'title' => __( 'Description', $this->domain ),
'type' => 'textarea',
'default' => __( 'Veuillez effectuer le paiement sur votre téléphone au numéro suivant.', $this->domain ),
'desc_tip' => true
),
'order_status' => array(
'title' => __( 'Status de la Commande', $this->domain ),
'type' => 'select',
'class' => 'wc-enhanced-select',
'description' => __( 'Sélectionner le Statut que vous voulez accorder à la commande avant la vérification du paiement.', $this->domain ),
'default' => 'wc-on-hold',
'desc_tip' => true,
'options' => wc_get_order_statuses()
),
'MMFWC_number' => array(
'title' => 'Airtel Money',
'description' => __( 'Ajouter un numéro Airtel Money qui sera affiché à vos clients sur la page de paiement', $this->domain ),
'type' => 'text',
'desc_tip' => true
),
'MMFWC_number2' => array(
'title' => 'Orange Money',
'description' => __( 'Ajouter un numéro Orange Money qui sera affiché à vos clients sur la page de paiement', $this->domain ),
'type' => 'text',
'desc_tip' => true
),
'MMFWC_number3' => array(
'title' => 'M-PESA',
'description' => __( 'Ajouter un numéro M-Pesa qui sera affiché à vos clients sur la page de paiement', $this->domain ),
'type' => 'text',
'desc_tip' => true
),
// Ce petit code sera utilisé aux prochaines mises à jour.
'number_type' => array(
'title' => __( 'Type de Compte si nécessaire.', $this->domain ),
'type' => 'select',
'class' => 'wc-enhanced-select',
'description' => __( 'Sélectionner le type de compte', $this->domain ),
'options' => array(
'Mobile' => __( 'Mobile', $this->domain ),
'Privé' => __( 'Privé', $this->domain ),
'Agent' => __( 'Agent', $this->domain ),
'Entreprise' => __( 'Entreprise', $this->domain ),
),
'desc_tip' => true
),
'instructions' => array(
'title' => __( 'Message', $this->domain ),
'type' => 'textarea',
'description' => __( 'Le message qui sera affiché à la page de remerciement et dans les Emails.', $this->domain ),
'default' => __( 'Nous avons reçu votre requête, nous vérifions les informations de paiement. Cette procédure peut prendre jusqu\'à 15 minutes.', $this->domain ),
'desc_tip' => true
),
);
}
public function payment_fields(){
global $woocommerce;
echo wpautop( wptexturize( " ".$this->txt_description." ") );
echo wpautop( wptexturize( "Airtel Money: " .$this->MMFWC_number ) );
echo wpautop( wptexturize( "Orange Money: " .$this->MMFWC_number2 ) );
echo wpautop( wptexturize( "M-PESA: " .$this->MMFWC_number3 ) );
?>
<p><h4>Vérification de la Transaction</h4></p>
<p><label for="MMFWC_number"><?php _e( 'N° Expéditaire: (le numéro qui a effectuer le paiement)', $this->domain );?></label>
</p>
<p>
<input type="text" name="MMFWC_number" id="MMFWC_number" placeholder="Ex: 097xxxxxx">
</p>
<p>
<label for="MMFWC_transaction_id"><?php _e( 'ID Transaction: (Identifiant unique de la transaction)', $this->domain );?></label>
</p>
<p>
<input type="text" name="MMFWC_transaction_id" id="MMFWC_transaction_id" placeholder="Ex: RDT4xxxxx">
</p>
<?php
}
public function process_payment( $order_id ) {
global $woocommerce;
$order = new WC_Order( $order_id );
$status = 'wc-' === substr( $this->order_status, 0, 3 ) ? substr( $this->order_status, 3 ) : $this->order_status;
// Marquer le paiement en attente (nous attendons les infos de MMFWC)
$order->update_status( $status, __( 'Paiement via Mobile Money. ', $this->domain ) );
// Reduire le stock s'il y en a
$order->reduce_order_stock();
// Enlever le produit dans le panier
$woocommerce->cart->empty_cart();
// Rediriger vers la page de remerciement
return array(
'result' => 'success',
'redirect' => $this->get_return_url( $order )
);
}
public function mobile_money_for_woocommerce_thankyou_page() {
$order_id = get_query_var('order-received');
$order = new WC_Order( $order_id );
if( $order->payment_method == $this->id ){
$thankyou = $this->instructions;
return $thankyou;
} else {
return __( 'Félicitation, vous êtes fantastique. Nous avons reçu votre commande.', $this->domain );
}
}
public function mobile_money_for_woocommerce_email_instructions( $order, $sent_to_admin, $plain_text = false ) {
if( $order->payment_method != $this->id )
return;
if ( $this->instructions && ! $sent_to_admin && $this->id === $order->payment_method ) {
echo wpautop( wptexturize( $this->instructions ) ) . PHP_EOL;
}
}
}
}
/**
* Ce petit code vérifiera si tous les champs ne sont pas vides
*/
add_action( 'woocommerce_checkout_process', 'mobile_money_for_woocommerce_payment_process' );
function mobile_money_for_woocommerce_payment_process(){
if($_POST['payment_method'] != 'mobile_money_for_woocommerce')
return;
$MMFWC_number = sanitize_text_field( $_POST['MMFWC_number'] );
$MMFWC_transaction_id = sanitize_text_field( $_POST['MMFWC_transaction_id'] );
if( !isset($MMFWC_number) || empty($MMFWC_number) )
wc_add_notice( __( 'Veuillez ajouter votre numéro Mobile Money.', 'mobile_money'), 'error' );
if( !isset($MMFWC_transaction_id) || empty($MMFWC_transaction_id) )
wc_add_notice( __( 'Veuillez confirmer le paiement en renseignant le numéro de transaction reçu par SMS pour Mobile Money', 'Mobile_money' ), 'error' );
}
/**
* Ajouter les informations de paiement MMFWC dans la base des données
*/
add_action( 'woocommerce_checkout_update_order_meta', 'mobile_money_for_woocommerce_additional_fields_update' );
function mobile_money_for_woocommerce_additional_fields_update( $order_id ){
if($_POST['payment_method'] != 'mobile_money_for_woocommerce' )
return;
$MMFWC_number = sanitize_text_field( $_POST['MMFWC_number'] );
$MMFWC_transaction_id = sanitize_text_field( $_POST['MMFWC_transaction_id'] );
$number = isset($MMFWC_number) ? $MMFWC_number : '';
$transaction = isset($MMFWC_transaction_id) ? $MMFWC_transaction_id : '';
update_post_meta($order_id, '_MMFWC_number', $number);
update_post_meta($order_id, '_MMFWC_transaction', $transaction);
}
/**
* Les données à afficher sur la page de commande d'administration */
add_action('woocommerce_admin_order_data_after_billing_address', 'mobile_money_for_woocommerce_admin_order_data' );
function mobile_money_for_woocommerce_admin_order_data( $order ){
if( $order->payment_method != 'mobile_money_for_woocommerce' )
return;
$number = (get_post_meta($order->id, '_MMFWC_number', true)) ? get_post_meta($order->id, '_MMFWC_number', true) : '';
$transaction = (get_post_meta($order->id, '_MMFWC_transaction', true)) ? get_post_meta($order->id, '_MMFWC_transaction', true) : '';
?>
<table class="wp-list-table widefat fixed striped posts">
<tbody>
<tr>
<th><?php _e('Numéro du Client:', 'mobile_money') ;?></th>
<td><?php echo esc_attr( $number );?></td>
</tr>
<tr>
<th><?php _e('ID de Transaction:', 'mobile_money') ;?></th>
<td><?php echo esc_attr( $transaction );?></td>
</tr>
</tbody>
</table>
<?php
}
/**
* Les données à afficher dans la page de revision de la commande
*/
add_action('woocommerce_order_details_after_customer_details', 'mobile_money_for_woocommerce_additional_info_order_review_fields' );
function mobile_money_for_woocommerce_additional_info_order_review_fields( $order ){
if( $order->payment_method != 'mobile_money_for_woocommerce' )
return;
$number = (get_post_meta($order->id, '_MMFWC_number', true)) ? get_post_meta($order->id, '_MMFWC_number', true) : '';
$transaction = (get_post_meta($order->id, '_MMFWC_transaction', true)) ? get_post_meta($order->id, '_MMFWC_transaction', true) : '';
?>
<tr>
<th><?php _e('Numéro du Client:', 'mobile_money');?></th>
<td><?php echo esc_attr( $number );?></td>
</tr>
<tr>
<th><?php _e('ID de Transaction:', 'mobile_money');?></th>
<td><?php echo esc_attr( $transaction );?></td>
</tr>
<?php
}
/**
* Ajouter les nouvelles colonnes dans l'admin Panel
*/
add_filter( 'manage_edit-shop_order_columns', 'mobile_money_for_woocommerce_admin_new_column' );
function mobile_money_for_woocommerce_admin_new_column($columns){
$new_columns = (is_array($columns)) ? $columns : array();
unset( $new_columns['order_actions'] );
$new_columns['mobile_no'] = __('Numéro du Client', 'mobile_money');
$new_columns['tran_id'] = __('ID de Transaction', 'mobile_money');
$new_columns['order_actions'] = $columns['order_actions'];
return $new_columns;
}
/**
* Charger les données dans la nouvelle colonne
*/
add_action( 'manage_shop_order_posts_custom_column', 'mobile_money_for_woocommerce_admin_column_value', 2 );
function mobile_money_for_woocommerce_admin_column_value($column){
global $post;
$mobile_no = (get_post_meta($post->ID, '_MMFWC_number', true)) ? get_post_meta($post->ID, '_MMFWC_number', true) : '';
$tran_id = (get_post_meta($post->ID, '_MMFWC_transaction', true)) ? get_post_meta($post->ID, '_MMFWC_transaction', true) : '';
if ( $column == 'mobile_no' ) {
echo esc_attr( $mobile_no );
}
if ( $column == 'tran_id' ) {
echo esc_attr( $tran_id );
}
}