-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjet-engine-calculated-callback.php
More file actions
321 lines (234 loc) · 8.63 KB
/
jet-engine-calculated-callback.php
File metadata and controls
321 lines (234 loc) · 8.63 KB
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
<?php
/**
* Plugin Name: JetEngine - Calculated callback
* Plugin URI: #
* Description: Adds new callback to Dynamic Field widget, which allows to make calculations by formulas registered from theme.
* Version: 1.0.1
* Author: Crocoblock
* Author URI: https://crocoblock.com/
* License: GPL-3.0+
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die();
}
class Jet_Engine_Calculated_Callback_Addon {
/**
* Instance.
*
* Holds the plugin instance.
*
* @since 1.0.0
* @access public
* @static
*
* @var Plugin
*/
public static $instance = null;
public $config = array();
public function __construct() {
add_filter( 'jet-engine/listings/allowed-callbacks', array( $this, 'add_calc_callback' ), 10, 2 );
add_filter( 'jet-engine/listing/dynamic-field/callback-args', array( $this, 'add_field_to_args' ), 10, 3 );
add_filter( 'jet-engine/listings/allowed-callbacks-args', array( $this, 'callback_controls' ) );
}
public function callback_controls( $args = array() ) {
$config = $this->get_config();
if ( empty( $config ) ) {
return $args;
}
$config = array_keys( $config );
$options = array_combine( $config, $config );
$options = array_merge( array( '' => esc_html__( 'Select ...', 'jet-engine' ) ), $options );
$args['jet_calc_cbs'] = array(
'label' => esc_html__( 'Calculated callbacks', 'jet-engine' ),
'type' => 'select',
'label_block' => true,
'description' => esc_html__( 'Select calculated callback to apply', 'jet-engine' ),
'default' => '',
'options' => $options,
'condition' => array(
'dynamic_field_filter' => 'yes',
'filter_callback' => array( 'jet_engine_calculated_field' ),
),
);
$args['jet_calc_cb_args'] = array(
'label' => esc_html__( 'Additional arguments', 'jet-engine' ),
'type' => 'text',
'label_block' => true,
'description' => esc_html__( 'Pass any additional arguments for calculated callback. For example increase/dercrease percentage, additional meta field key for default callbacks. Note: for sum_fields, multiply_fields and fields_diff callbacks you can pass multiple additional fields by separating fields name with comma - field_1, field_2, field_3', 'jet-engine' ),
'default' => '',
'condition' => array(
'dynamic_field_filter' => 'yes',
'filter_callback' => array( 'jet_engine_calculated_field' ),
),
);
$args['jet_calc_cb_dec'] = array(
'label' => esc_html__( 'Decimal points', 'jet-engine' ),
'type' => 'number',
'min' => '0',
'max' => '99',
'step' => '1',
'default' => '0',
'label_block' => true,
'condition' => array(
'dynamic_field_filter' => 'yes',
'filter_callback' => array( 'jet_engine_calculated_field' ),
),
);
$args['jet_calc_cb_dec_sep'] = array(
'label' => esc_html__( 'Decimal point', 'jet-engine' ),
'type' => 'text',
'label_block' => true,
'default' => '.',
'condition' => array(
'dynamic_field_filter' => 'yes',
'filter_callback' => array( 'jet_engine_calculated_field' ),
),
);
$args['jet_calc_cb_th_sep'] = array(
'label' => esc_html__( 'Thousands separator', 'jet-engine' ),
'type' => 'text',
'label_block' => true,
'default' => ',',
'condition' => array(
'dynamic_field_filter' => 'yes',
'filter_callback' => array( 'jet_engine_calculated_field' ),
),
);
return $args;
}
public function add_calc_callback( $callbacks ) {
$callbacks['jet_engine_calculated_field'] = 'Calculated field';
return $callbacks;
}
public function calculated_field( $field_value = null, $calc_key = null, $args = null ) {
if ( ! $calc_key ) {
return $field_value;
}
$config = $this->get_config();
if ( empty( $config ) ) {
return $field_value;
}
$callback = ! empty( $config[ $calc_key ] ) ? $config[ $calc_key ] : false;
if ( ! $callback || ! is_callable( $callback ) ) {
return $field_value;
} else {
return call_user_func( $callback, $field_value, $args );
}
}
public function get_config() {
return apply_filters( 'jet-engine-calculated-callback/config', array(
'increase_value_by_percentage' => function( $field_value, $percent = 0 ) {
$field_value = Jet_Engine_Calculated_Callback_Addon::prepare_value( $field_value );
if ( ! $percent ) {
return 'Please set percentage value to calculate';
}
$percent = Jet_Engine_Calculated_Callback_Addon::prepare_value( $percent );
return $field_value + $field_value * $percent / 100;
},
'decrease_value_by_percentage' => function( $field_value, $percent = 0 ) {
$field_value = Jet_Engine_Calculated_Callback_Addon::prepare_value( $field_value );
if ( ! $percent ) {
return 'Please set percentage value to calculate';
}
$percent = Jet_Engine_Calculated_Callback_Addon::prepare_value( $percent );
return $field_value - $field_value * $percent / 100;
},
'sum_fields' => function( $field_value, $fields ) {
if ( empty( $fields ) ) {
return 'Please set additional fields names to calculate';
}
$res = Jet_Engine_Calculated_Callback_Addon::prepare_value( $field_value );
$fields = explode( ',', str_replace( ' ', '', $fields ) );
foreach ( $fields as $field ) {
$res += Jet_Engine_Calculated_Callback_Addon::prepare_value( jet_engine()->listings->data->get_meta( $field ) );
}
return $res;
},
'fields_diff' => function( $field_value, $fields ) {
if ( empty( $fields ) ) {
return 'Please set additional fields names to calculate';
}
$res = Jet_Engine_Calculated_Callback_Addon::prepare_value( $field_value );
$fields = explode( ',', str_replace( ' ', '', $fields ) );
foreach ( $fields as $field ) {
$res = $res - Jet_Engine_Calculated_Callback_Addon::prepare_value( jet_engine()->listings->data->get_meta( $field ) );
}
return $res;
},
'mupltiple_fields' => function( $field_value, $fields ) {
if ( empty( $fields ) ) {
return 'Please set additional fields names to calculate';
}
$res = Jet_Engine_Calculated_Callback_Addon::prepare_value( $field_value );
$fields = explode( ',', str_replace( ' ', '', $fields ) );
foreach ( $fields as $field ) {
$res = $res * Jet_Engine_Calculated_Callback_Addon::prepare_value( jet_engine()->listings->data->get_meta( $field ) );
}
return $res;
},
'divide_fields' => function( $field_value, $fields ) {
if ( empty( $fields ) ) {
return 'Please set additional fields names to calculate';
}
$res = Jet_Engine_Calculated_Callback_Addon::prepare_value( $field_value );
$fields = explode( ',', str_replace( ' ', '', $fields ) );
foreach ( $fields as $field ) {
$div = Jet_Engine_Calculated_Callback_Addon::prepare_value( jet_engine()->listings->data->get_meta( $field ) );
if ( ! $div ) {
throw new Exception( 'Division by 0' );
}
$res = $res / $div;
}
return $res;
},
) );
}
public function add_field_to_args( $args, $callback, $settings = array() ) {
if ( 'jet_engine_calculated_field' === $callback ) {
$args[] = isset( $settings['jet_calc_cbs'] ) ? $settings['jet_calc_cbs'] : false;
$args[] = isset( $settings['jet_calc_cb_args'] ) ? $settings['jet_calc_cb_args'] : false;
$args[] = isset( $settings['jet_calc_cb_dec'] ) ? $settings['jet_calc_cb_dec'] : 0;
$args[] = isset( $settings['jet_calc_cb_dec_sep'] ) ? $settings['jet_calc_cb_dec_sep'] : '.';
$args[] = isset( $settings['jet_calc_cb_th_sep'] ) ? $settings['jet_calc_cb_th_sep'] : ',';
}
return $args;
}
/**
* Instance.
*
* Ensures only one instance of the plugin class is loaded or can be loaded.
*
* @since 1.0.0
* @access public
* @static
*
* @return Plugin An instance of the class.
*/
public static function instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
public static function prepare_value( $value ) {
if ( ! is_numeric( $value ) ) {
$value = 0;
}
return $value;
}
}
Jet_Engine_Calculated_Callback_Addon::instance();
function jet_engine_calculated_field( $field_value = null, $calc_key = null, $args = null, $dec = 0, $dec_sep = '.', $th_sep = ',' ) {
try {
$result = Jet_Engine_Calculated_Callback_Addon::instance()->calculated_field( $field_value, $calc_key, $args );
} catch( Exception $e ) {
return $e->getMessage();
}
if ( is_numeric( $result ) ) {
$result = number_format( $result, $dec, $dec_sep, $th_sep );
}
return $result;
}