-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwoocommerce-emailchef.php
268 lines (214 loc) · 5.95 KB
/
woocommerce-emailchef.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
<?php
/*
* Plugin Name: Emailchef for WooCommerce
* Plugin Uri: http://emailchef.com/email-marketing-woocommerce-emailchef/
* Description: Using this WooCommerce plugin, Emailchef can communicate with your online store and it creates easy, simply and automatic targeted campaigns.
* Author: emailchef
* Author URI: https://www.emailchef.com
* Version: 5.5.1
* Tested up: 6.7
* WC requires at least: 8.3.1
* WC tested up to: 9.6.1
* Text Domain: emailchef-for-woocommerce
* Domain Path: /languages/
* License: GPL v2
*/
if ( ! defined( 'ABSPATH' ) ) {
die;
}
/**
*
* Full path to the WooCommerce Emailchef File
*
*/
define( 'WC_EMAILCHEF_FILE', __FILE__ );
define('WC_EMAILCHEF_VERSION', '5.5.1');
/**
*
* The main plugin class
*
*/
require_once( 'includes/class-wc-emailchef-plugin.php' );
function wc_ec_get_total_by_days( $customer_id = null, $gap_days = 0 ) {
if ( is_null( $customer_id ) ) {
return 0;
}
if ( $gap_days == 0 ) {
return wc_get_customer_total_spent( $customer_id );
}
$customer_id = absint( $customer_id );
$gap_days = absint( $gap_days );
$date_from = ( new DateTime() )->modify( "-{$gap_days} days" )->format( 'Y-m-d H:i:s' );
$query = new WC_Order_Query( array(
'customer_id' => $customer_id,
'status' => array( 'wc-completed', 'wc-processing' ),
'date_after' => $date_from,
'return' => 'ids',
) );
$order_ids = $query->get_orders();
$total_spent = 0;
foreach ( $order_ids as $order_id ) {
$order = wc_get_order( $order_id );
$total_spent += $order->get_total();
}
return $total_spent;
}
/**
* @param $customer_id
*
* @return string
*
*
*/
function wc_ec_get_all_products( $customer_id, $no_order = - 1 ) {
$products = array();
if ( empty( $customer_id ) ) {
$customer_id = get_current_user_id();
}
// Ottieni gli ordini del cliente
$query_args = array(
'customer_id' => $customer_id,
'status' => array_keys( wc_get_order_statuses() ),
'limit' => $no_order == - 1 ? - 1 : 1,
'orderby' => 'date',
'order' => 'DESC',
);
$query = new WC_Order_Query( $query_args );
$customer_orders = $query->get_orders();
if ( ! empty( $customer_orders ) ) {
foreach ( $customer_orders as $order ) {
foreach ( $order->get_items() as $order_item ) {
$product_id = $order_item->get_product_id();
if ( ! in_array( $product_id, $products ) ) {
$products[] = $product_id;
}
}
}
}
return implode( ", ", $products );
}
function wc_ec_get_customer_last_order( $customer_id ) {
$customer_id = absint( $customer_id );
$query = new WC_Order_Query( array(
'customer_id' => $customer_id,
'limit' => 1,
'orderby' => 'date',
'order' => 'DESC',
'status' => 'completed',
) );
$orders = $query->get_orders();
if ( ! empty( $orders ) ) {
return $orders[0];
}
return null;
}
function wc_ec_get_order_status_name( $status ) {
$order_statuses = array(
'wc-pending' => 'Pending Payment',
'wc-processing' => 'Processing',
'wc-on-hold' => 'On Hold',
'wc-completed' => 'Completed',
'wc-cancelled' => 'Cancelled',
'wc-refunded' => 'Refunded',
'wc-failed' => 'Failed',
);
return isset( $order_statuses[ $status ] ) ? $order_statuses[ $status ] : $status;
}
function wc_ec_last_active( $user_id ) {
return get_user_meta( $user_id, 'wc_last_active', true );
}
function wc_ec_get_user_registration( $user_id ) {
$userdata = get_userdata( $user_id );
$date = date( "Y-m-d", strtotime( $userdata->user_registered ) );
if ( $date == '' || $date == null ) {
return wc_ec_last_active( $user_id );
}
return $date;
}
/**
* @param $order WC_Order
*
* @return mixed|string
*/
function wc_ec_get_user_registration_byorder( $order ) {
$user = $order->get_user();
if ( $user !== false ) {
return wc_ec_get_user_registration( $user );
}
return $order->get_date_created()->format( "Y-m-d" );
}
function wc_ec_nf_or_empty( $price ) {
if ( (int) $price === 0 ) {
return "";
}
return number_format( $price, 2 );
}
function wc_ec_get_option_name(
$option_name
) {
return apply_filters( 'wc_ec_add_prefix', $option_name );
}
function wc_ec_get_option_value(
$option_name
) {
return get_option(
wc_ec_get_option_name( $option_name )
);
}
function wc_ec_update_option(
$option_name,
$option_value
) {
return update_option(
wc_ec_get_option_name( $option_name ),
$option_value
);
}
function wc_ec_get_dropdown_pages(
$option_name,
$_args = null
) {
$value = wc_ec_get_option_value( $option_name );
$args = array(
'id' => wc_ec_get_option_name( $option_name ),
'name' => wc_ec_get_option_name( $option_name ),
'sort_column' => 'menu_order',
'sort_order' => 'ASC',
'show_option_none' => ' ',
'class' => "wc-enhanced-select-nostd",
'echo' => false,
'selected' => absint( $value ),
'post_status' => 'publish,private,draft',
);
if ( ! is_null( $_args ) ) {
$args = wp_parse_args( $_args, $args );
}
return wp_dropdown_pages( $args );
}
function wc_ec_get_abandoned_carts_start_interval(): string {
return apply_filters( 'ec_get_abandoned_carts_start_interval_value', 7 ) . " " .
apply_filters( 'ec_get_abandoned_carts_start_interval_unit', "DAY" );
}
function wc_ec_get_abandoned_carts_end_value(){
$cron_end_interval_value = wc_ec_get_option_value("cron_end_interval_value");
if ($cron_end_interval_value){
$cron_end_interval_value = 24;
}
return apply_filters( 'ec_get_abandoned_carts_end_interval_value', $cron_end_interval_value );
}
function wc_ec_get_abandoned_carts_end_unit(){
$default_unit = "HOUR";
$unit = apply_filters( 'ec_get_abandoned_carts_end_interval_unit', $default_unit );
if (!in_array($unit, array("HOUR", "DAY"))){
return $default_unit;
}
return $unit;
}
function wc_ec_get_abandoned_carts_end_interval(): string {
return wc_ec_get_abandoned_carts_end_value() . " " .
wc_ec_get_abandoned_carts_end_unit();
}
function WCEC() {
return WC_Emailchef_Plugin::get_instance();
}
WCEC();