forked from weDevsOfficial/wp-user-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposting.php
583 lines (494 loc) · 20.3 KB
/
posting.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
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
<?php
/**
* Admin side posting handler
*
* Builds custom fields UI for post add/edit screen
* and handles value saving.
*
* @package WP User Frontend
*/
class WPUF_Admin_Posting {
private static $_instance;
function __construct() {
// meta boxes
add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes') );
add_action( 'add_meta_boxes', array( $this, 'add_meta_box_form_select') );
add_action( 'add_meta_boxes', array( $this, 'add_meta_box_post_lock') );
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_script') );
add_action( 'save_post', array( $this, 'save_meta'), 1, 2 ); // save the custom fields
add_action( 'save_post', array( $this, 'form_selection_metabox_save' ), 1, 2 ); // save edit form id
add_action( 'save_post', array( $this, 'post_lock_metabox_save' ), 1, 2 ); // save post lock option
add_action( 'wp_ajax_wpuf_clear_schedule_lock', array($this, 'clear_schedule_lock') );
}
public static function init() {
if ( !self::$_instance ) {
self::$_instance = new self();
}
return self::$_instance;
}
function enqueue_script() {
global $pagenow;
if ( !in_array( $pagenow, array( 'profile.php', 'post-new.php', 'post.php', 'user-edit.php' ) ) ) {
return;
}
$scheme = is_ssl() ? 'https' : 'http';
$api_key = wpuf_get_option( 'gmap_api_key', 'wpuf_general' );
wp_enqueue_style( 'jquery-ui', WPUF_ASSET_URI . '/css/jquery-ui-1.9.1.custom.css' );
wp_enqueue_script( 'jquery-ui-datepicker' );
wp_enqueue_script( 'jquery-ui-slider' );
wp_enqueue_script( 'jquery-ui-timepicker', WPUF_ASSET_URI . '/js/jquery-ui-timepicker-addon.js', array('jquery-ui-datepicker') );
if ( !empty( $api_key ) ) {
wp_enqueue_script( 'google-maps', $scheme . '://maps.google.com/maps/api/js?libraries=places&key='.$api_key, array(), null );
} else {
add_action('admin_head', 'wpuf_hide_google_map_button');
function wpuf_hide_google_map_button() {
echo "<style>
button.button[data-name='custom_map'] {
display: none;
}
</style>";
}
}
wp_enqueue_style( 'wpuf-sweetalert2', WPUF_ASSET_URI . '/vendor/sweetalert2/dist/sweetalert2.css', array(), WPUF_VERSION );
wp_enqueue_script( 'wpuf-sweetalert2', WPUF_ASSET_URI . '/vendor/sweetalert2/dist/sweetalert2.js', array(), WPUF_VERSION, true );
wp_enqueue_script( 'wpuf-upload', WPUF_ASSET_URI . '/js/upload.js', array('jquery', 'plupload-handlers') );
wp_localize_script( 'wpuf-upload', 'wpuf_frontend_upload', array(
'confirmMsg' => __( 'Are you sure?', 'wp-user-frontend' ),
'delete_it' => __( 'Yes, delete it', 'wp-user-frontend' ),
'cancel_it' => __( 'No, cancel it', 'wp-user-frontend' ),
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'nonce' => wp_create_nonce( 'wpuf_nonce' ),
'plupload' => array(
'url' => admin_url( 'admin-ajax.php' ) . '?nonce=' . wp_create_nonce( 'wpuf-upload-nonce' ),
'flash_swf_url' => includes_url( 'js/plupload/plupload.flash.swf' ),
'filters' => array(array('title' => __( 'Allowed Files', 'wp-user-frontend' ), 'extensions' => '*')),
'multipart' => true,
'urlstream_upload' => true,
'warning' => __( 'Maximum number of files reached!', 'wp-user-frontend' ),
'size_error' => __( 'The file you have uploaded exceeds the file size limit. Please try again.', 'wp-user-frontend' ),
'type_error' => __( 'You have uploaded an incorrect file type. Please try again.', 'wp-user-frontend' )
)
) );
}
/**
* Meta box for all Post form selection
*
* Registers a meta box in public post types to select the desired WPUF
* form select box to assign a form id.
*
* @since 2.5.2
*
* @return void
*/
function add_meta_box_form_select() {
$post_types = get_post_types( array('public' => true) );
foreach ($post_types as $post_type) {
add_meta_box( 'wpuf-select-form', __('WPUF Form', 'wp-user-frontend'), array($this, 'form_selection_metabox'), $post_type, 'side', 'high' );
}
}
/**
* Form selection meta box in post types
*
* Registered via $this->add_meta_box_form_select()
*
* @since 2.5.2
*
* @global object $post
*/
function form_selection_metabox() {
global $post;
$forms = get_posts( array('post_type' => 'wpuf_forms', 'numberposts' => '-1') );
$selected = get_post_meta( $post->ID, '_wpuf_form_id', true );
?>
<input type="hidden" name="wpuf_form_select_nonce" value="<?php echo wp_create_nonce( plugin_basename( __FILE__ ) ); ?>" />
<select name="wpuf_form_select">
<option value="">--</option>
<?php foreach ($forms as $form) { ?>
<option value="<?php echo $form->ID; ?>"<?php selected($selected, $form->ID); ?>><?php echo $form->post_title; ?></option>
<?php } ?>
</select>
<div>
<p><a href="https://wedevs.com/docs/wp-user-frontend-pro/tutorials/purpose-of-the-wpuf-form-metabox/" target="_blank"><?php _e( 'Learn more', 'wp-user-frontend' ); ?></a></p>
</div>
<?php
}
/**
* Saves the form ID from form selection meta box
*
* @since 2.5.2
*
* @param int $post_id
* @param object $post
* @return int|void
*/
function form_selection_metabox_save( $post_id, $post ) {
if ( !isset($_POST['wpuf_form_select'])) {
return $post->ID;
}
if ( !wp_verify_nonce( $_POST['wpuf_form_select_nonce'], plugin_basename( __FILE__ ) ) ) {
return $post->ID;
}
// Is the user allowed to edit the post or page?
if ( !current_user_can( 'edit_post', $post->ID ) ) {
return $post->ID;
}
update_post_meta( $post->ID, '_wpuf_form_id', $_POST['wpuf_form_select'] );
}
/**
* Meta box for post lock
*
* Registers a meta box in public post types to select the desired WPUF
* form select box to assign a form id.
*
* @since 3.0.2
*
* @return void
*/
function add_meta_box_post_lock() {
$post_types = get_post_types( array('public' => true) );
foreach ($post_types as $post_type) {
add_meta_box( 'wpuf-post-lock', __('WPUF Lock User', 'wp-user-frontend'), array($this, 'post_lock_metabox'), $post_type, 'side', 'high' );
}
}
/**
* Post lock meta box in post types
*
* Registered via $this->add_meta_box_post_lock()
*
* @since 3.0.2
*
* @global object $post
*/
function post_lock_metabox() {
global $post;
$msg = '';
$edit_post_lock = get_post_meta( $post->ID, '_wpuf_lock_editing_post', true );
$edit_post_lock_time = get_post_meta( $post->ID, '_wpuf_lock_user_editing_post_time', true );
if( !empty( $edit_post_lock_time ) && $edit_post_lock_time > time() ) {
$time = date( 'Y-m-d H:i:s', $edit_post_lock_time );
$local_time = get_date_from_gmt( $time, get_option('date_format') . ' ' . get_option('time_format') );
$msg = sprintf( __( 'Frontend edit access for this post will be automatically locked after %s, <a id="wpuf_clear_schedule_lock" data="%s" href="#">Clear Schedule Lock</a> Or,', 'wp-user-frontend' ), $local_time, $post->ID );
}
?>
<input type="hidden" name="wpuf_lock_editing_post_nonce" value="<?php echo wp_create_nonce( plugin_basename( __FILE__ ) ); ?>" />
<p><?php echo $msg; ?></p>
<label>
<input type="hidden" name="wpuf_lock_post" value="no">
<input type="checkbox" name="wpuf_lock_post" value="yes" <?php checked($edit_post_lock, 'yes'); ?>>
<?php _e( 'Lock Post', 'wp-user-frontend' ); ?>
</label>
<p style="margin-top: 10px"><?php _e( 'Lock user from editing this post from the frontend dashboard', 'wp-user-frontend' ); ?></p>
<?php
}
/**
* Save the lock post option
*
* @since 3.0.2
*
* @param int $post_id
* @param object $post
* @return int|void
*/
function post_lock_metabox_save( $post_id, $post ) {
$edit_post_lock_time = isset( $_POST['_wpuf_lock_user_editing_post_time'] ) ? $_POST['_wpuf_lock_user_editing_post_time'] : '';
if ( !isset($_POST['wpuf_lock_post'])) {
return $post->ID;
}
if ( !wp_verify_nonce( $_POST['wpuf_lock_editing_post_nonce'], plugin_basename( __FILE__ ) ) ) {
return $post->ID;
}
// Is the user allowed to edit the post or page?
if ( !current_user_can( 'edit_post', $post->ID ) ) {
return $post->ID;
}
update_post_meta( $post->ID, '_wpuf_lock_editing_post', $_POST['wpuf_lock_post'] );
}
/**
* Meta box to show WPUF Custom Fields
*
* Registers a meta box in public post types to show WPUF Custom Fields
*
* @since 2.5
*
* @return void
*/
function add_meta_boxes() {
$post_types = get_post_types( array('public' => true) );
foreach ($post_types as $post_type) {
add_meta_box( 'wpuf-custom-fields', __( 'WPUF Custom Fields', 'wp-user-frontend' ), array($this, 'render_form'), $post_type, 'normal', 'high' );
}
}
/**
* function to hide form custom field
*
* @since 2.5
*
* @return void
*/
function hide_form() {
?>
<style type="text/css">
#wpuf-custom-fields { display: none; }
</style>
<?php
}
/**
* generate frontend form field
*
* @since 2.5
*
* @param int $form_id
* @param int $post_id
*
* @return void
*/
function render_form( $form_id, $post_id = null ) {
global $post;
$form_id = get_post_meta( $post->ID, '_wpuf_form_id', true );
$form_settings = wpuf_get_form_settings( $form_id );
/**
* There may be incompatibilities with WPUF metabox display when Advanced Custom Fields
* is active. By default WPUF metaboxes will be hidden when ACF is detected. However,
* you can override that by using the following filter.
*/
$hide_with_acf = class_exists( 'acf' ) ? apply_filters( 'wpuf_hide_meta_when_acf_active', true ) : false;
// hide the metabox itself if no form ID is set
if ( !$form_id || $hide_with_acf ) {
$this->hide_form();
return;
}
list($post_fields, $taxonomy_fields, $custom_fields) = $this->get_input_fields( $form_id );
if ( empty( $custom_fields ) ) {
_e( 'No custom fields found.', 'wp-user-frontend' );
return;
}
?>
<input type="hidden" name="wpuf_cf_update" value="<?php echo wp_create_nonce( plugin_basename( __FILE__ ) ); ?>" />
<input type="hidden" name="wpuf_cf_form_id" value="<?php echo $form_id; ?>" />
<table class="form-table wpuf-cf-table">
<tbody>
<script type="text/javascript">
if ( typeof wpuf_conditional_items === 'undefined' ) {
wpuf_conditional_items = [];
}
if ( typeof wpuf_plupload_items === 'undefined' ) {
wpuf_plupload_items = [];
}
if ( typeof wpuf_map_items === 'undefined' ) {
wpuf_map_items = [];
}
</script>
<?php
$atts = array();
wpuf()->fields->render_fields( $custom_fields, $form_id, $atts, $type = 'post', $post->ID );
?>
</tbody>
</table>
<?php
$this->scripts_styles();
}
function scripts_styles() {
?>
<script type="text/javascript">
jQuery(function($){
var wpuf = {
init: function() {
$('.wpuf-cf-table').on('click', 'img.wpuf-clone-field', this.cloneField);
$('.wpuf-cf-table').on('click', 'img.wpuf-remove-field', this.removeField);
$('.wpuf-cf-table').on('click', 'a.wpuf-delete-avatar', this.deleteAvatar);
},
cloneField: function(e) {
e.preventDefault();
var $div = $(this).closest('tr');
var $clone = $div.clone();
// console.log($clone);
//clear the inputs
$clone.find('input').val('');
$clone.find(':checked').attr('checked', '');
$div.after($clone);
},
removeField: function() {
//check if it's the only item
var $parent = $(this).closest('tr');
var items = $parent.siblings().andSelf().length;
if( items > 1 ) {
$parent.remove();
}
},
deleteAvatar: function(e) {
e.preventDefault();
var data = {
action: 'wpuf_delete_avatar',
user_id : $('#profile-page').find('#user_id').val(),
_wpnonce: '<?php echo wp_create_nonce( 'wpuf_nonce' ); ?>'
};
if ( confirm( $(this).data('confirm') ) ) {
$.post(ajaxurl, data, function() {
window.location.reload();
});
}
}
};
wpuf.init();
});
</script>
<style type="text/css">
ul.wpuf-attachment-list li {
display: inline-block;
border: 1px solid #dfdfdf;
padding: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-right: 5px;
}
.wpuf-cf-table table th,
.wpuf-cf-table table td{
padding-left: 0 !important;
}
.wpuf-cf-table .required { color: red;}
.wpuf-cf-table textarea { width: 400px; }
.wpuf-field-google-map {
height: 300px;
width: 100%;
}
.wpuf-form-google-map {
height: 300px;
width: 100%;
}
input[type="text"].wpuf-google-map-search {
margin-top: 10px !important;
border: 1px solid transparent !important;
border-radius: 2px 0 0 2px !important;
box-sizing: border-box !important;
-moz-box-sizing: border-box !important;
height: 32px !important;
outline: none !important;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
background-color: #fff !important;
text-overflow: ellipsis !important;
width: 170px !important;
font-family: Roboto !important;
font-size: 15px !important;
font-weight: 300 !important;
padding: 0 11px 0 13px !important;
display: none;
}
.gm-style input[type="text"].wpuf-google-map-search {
display: block;
}
.wpuf-form-google-map-container input[type="text"].wpuf-google-map-search {
width: 230px !important;
}
.wpuf-form-google-map-container.hide-search-box .gm-style input[type="text"].wpuf-google-map-search {
display: none;
}
</style>
<?php
}
/**
* save post meta
*
* @since 2.5
*
* @param object $post
*
* @return void
*/
// Save the Metabox Data
function save_meta( $post_id, $post = null ) {
if ( !isset( $post_id ) ) {
return;
}
if ( !isset( $_POST['wpuf_cf_update'] ) ) {
return $post_id;
}
if ( !wp_verify_nonce( $_POST['wpuf_cf_update'], plugin_basename( __FILE__ ) ) ) {
return $post_id;
}
// Is the user allowed to edit the post or page?
if ( !current_user_can( 'edit_post', $post_id ) ) {
return $post_id;
}
list( $post_vars, $tax_vars, $meta_vars ) = self::get_input_fields( $_POST['wpuf_cf_form_id'] );
// WPUF_Frontend_Form_Post::update_post_meta( $meta_vars, $post_id );
WPUF_Frontend_Form::update_post_meta( $meta_vars, $post_id );
}
/**
* Clear Schedule lock
*
* @since 3.0.2
*/
public function clear_schedule_lock() {
check_ajax_referer( 'wpuf_nonce', 'nonce' );
$post_id = isset( $_POST['post_id'] ) ? $_POST['post_id'] : '';
if ( !empty( $post_id ) ) {
$edit_post_lock_time = get_post_meta( $post_id, '_wpuf_lock_user_editing_post_time', true );
if ( !empty( $edit_post_lock_time ) ) {
update_post_meta( $post_id, '_wpuf_lock_user_editing_post_time', '' );
}
}
exit;
}
/**
* Get input meta fields separated as post vars, taxonomy and meta vars
*
* @param int $form_id form id
* @return array
*/
public static function get_input_fields( $form_id ) {
$form_vars = wpuf_get_form_fields( $form_id );
$ignore_lists = array('section_break', 'html');
$post_vars = $meta_vars = $taxonomy_vars = array();
foreach ($form_vars as $key => $value) {
// get column field input fields
if ( $value['input_type'] == 'column_field' ) {
$inner_fields = $value['inner_fields'];
foreach ($inner_fields as $column_key => $column_fields) {
if (!empty($column_fields)) {
// ignore section break and HTML input type
foreach ($column_fields as $column_field_key => $column_field) {
if ( in_array( $column_field['input_type'], $ignore_lists ) ) {
continue;
}
//separate the post and custom fields
if ( isset( $column_field['is_meta'] ) && $column_field['is_meta'] == 'yes' ) {
$meta_vars[] = $column_field;
continue;
}
if ( $column_field['input_type'] == 'taxonomy' ) {
// don't add "category"
if ( $column_field['name'] == 'category' ) {
continue;
}
$taxonomy_vars[] = $column_field;
} else {
$post_vars[] = $column_field;
}
}
}
}
continue;
}
// ignore section break and HTML input type
if ( in_array( $value['input_type'], $ignore_lists ) ) {
continue;
}
//separate the post and custom fields
if ( isset( $value['is_meta'] ) && $value['is_meta'] == 'yes' ) {
$meta_vars[] = $value;
continue;
}
if ( $value['input_type'] == 'taxonomy' ) {
// don't add "category"
if ( $value['name'] == 'category' ) {
continue;
}
$taxonomy_vars[] = $value;
} else {
$post_vars[] = $value;
}
}
return array($post_vars, $taxonomy_vars, $meta_vars);
}
}