forked from CMB2/CMB2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMB2.php
740 lines (617 loc) · 20.8 KB
/
CMB2.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
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
<?php
/**
* Helper function to provide directory path to CMB
* @since 2.0.0
* @param string $path Path to append
* @return string Directory with optional path appended
*/
function cmb2_dir( $path = '' ) {
return trailingslashit( dirname( __FILE__ ) ) . $path;
}
require_once cmb2_dir( 'includes/helper-functions.php' );
$meta_boxes_config = apply_filters( 'cmb2_meta_boxes', array() );
foreach ( (array) $meta_boxes_config as $meta_box ) {
$cmb = new CMB2( $meta_box );
if ( $cmb->prop( 'hookup' ) ) {
$hookup = new CMB2_hookup( $cmb );
}
}
/**
* Create meta boxes
*/
class CMB2 {
/**
* Current field's ID
* @var string
* @since 2.0.0
*/
protected $cmb_id = '';
/**
* Metabox Config array
* @var array
* @since 0.9.0
*/
protected $meta_box;
/**
* Object ID for metabox meta retrieving/saving
* @var int
* @since 1.0.0
*/
protected $object_id = 0;
/**
* Type of object being saved. (e.g., post, user, or comment)
* @var string
* @since 1.0.0
*/
protected $object_type = 'post';
/**
* Type of object registered for metabox. (e.g., post, user, or comment)
* @var string
* @since 1.0.0
*/
protected $mb_object_type = null;
/**
* List of fields that are changed/updated on save
* @var array
* @since 1.1.0
*/
protected $updated = array();
/**
* Metabox Defaults
* @var array
* @since 1.0.1
*/
protected $mb_defaults = array(
'id' => '',
'title' => '',
'type' => '',
'object_types' => array(), // Post type
'context' => 'normal',
'priority' => 'high',
'show_names' => true, // Show field names on the left
'show_on' => array(), // Specific post IDs or page templates to display this metabox
'cmb_styles' => true, // Include cmb bundled stylesheet
'fields' => array(),
'hookup' => true,
'new_user_section' => 'add-new-user', // or 'add-existing-user'
);
/**
* Get started
*/
function __construct( $meta_box, $object_id = 0 ) {
if ( empty( $meta_box['id'] ) ) {
wp_die( __( 'Metabox configuration is required to have an ID parameter', 'cmb2' ) );
}
$this->meta_box = wp_parse_args( $meta_box, $this->mb_defaults );
$this->object_id( $object_id );
$this->mb_object_type();
$this->cmb_id = $meta_box['id'];
CMB2_Boxes::add( $this );
}
/**
* Loops through and displays fields
* @since 1.0.0
* @param int $object_id Object ID
* @param string $object_type Type of object being saved. (e.g., post, user, or comment)
*/
public function show_form( $object_id = 0, $object_type = '' ) {
$object_type = $this->object_type( $object_type );
$object_id = $this->object_id( $object_id );
$this->nonce_field();
echo "\n<!-- Begin CMB Fields -->\n";
/**
* Hook before form table begins
*
* @param array $cmb_id The current box ID
* @param int $object_id The ID of the current object
* @param string $object_type The type of object you are working with.
* Usually `post` (this applies to all post-types).
* Could also be `comment`, `user` or `options-page`.
* @param array $cmb This CMB2 object
*/
do_action( 'cmb2_before_form', $this->cmb_id, $object_id, $object_type, $this );
/**
* Hook before form table begins
*
* The first dynamic portion of the hook name, $object_type, is the type of object
* you are working with. Usually `post` (this applies to all post-types).
* Could also be `comment`, `user` or `options-page`.
*
* The second dynamic portion of the hook name, $this->cmb_id, is the meta_box id.
*
* @param array $cmb_id The current box ID
* @param int $object_id The ID of the current object
* @param array $cmb This CMB2 object
* @param string $object_type The type of object you are working with.
* Usually `post` (this applies to all post-types).
* Could also be `comment`, `user` or `options-page`.
*/
do_action( "cmb2_before_{$object_type}_form_{$this->cmb_id}", $object_id, $this, $object_type );
echo '<div class="cmb2-wrap form-table"><div id="cmb2-metabox-'. sanitize_html_class( $this->cmb_id ) .'" class="cmb2-metabox cmb-field-list">';
foreach ( $this->prop( 'fields' ) as $field_args ) {
$field_args['context'] = $this->prop( 'context' );
if ( 'group' == $field_args['type'] ) {
if ( ! isset( $field_args['show_names'] ) ) {
$field_args['show_names'] = $this->prop( 'show_names' );
}
$this->render_group( $field_args );
} elseif ( 'hidden' == $field_args['type'] ) {
// Save rendering for after the metabox
$this->add_hidden_field( array(
'field_args' => $field_args,
'object_type' => $this->object_type(),
'object_id' => $this->object_id(),
) );
} else {
$field_args['show_names'] = $this->prop( 'show_names' );
// Render default fields
$field = new CMB2_Field( array(
'field_args' => $field_args,
'object_type' => $this->object_type(),
'object_id' => $this->object_id(),
) );
$field->render_field();
}
}
echo '</div></div>';
$this->render_hidden_fields();
/**
* Hook after form form has been rendered
*
* @param array $cmb_id The current box ID
* @param int $object_id The ID of the current object
* @param string $object_type The type of object you are working with.
* Usually `post` (this applies to all post-types).
* Could also be `comment`, `user` or `options-page`.
* @param array $cmb This CMB2 object
*/
do_action( 'cmb2_after_form', $this->cmb_id, $object_id, $object_type, $this );
/**
* Hook after form form has been rendered
*
* The dynamic portion of the hook name, $this->cmb_id, is the meta_box id.
*
* The first dynamic portion of the hook name, $object_type, is the type of object
* you are working with. Usually `post` (this applies to all post-types).
* Could also be `comment`, `user` or `options-page`.
*
* @param int $object_id The ID of the current object
* @param array $cmb This CMB2 object
* @param string $object_type The type of object you are working with.
* Usually `post` (this applies to all post-types).
* Could also be `comment`, `user` or `options-page`.
*/
do_action( "cmb2_after_{$object_type}_form_{$this->cmb_id}", $object_id, $this );
echo "\n<!-- End CMB Fields -->\n";
}
/**
* Render a repeatable group
*/
public function render_group( $args ) {
if ( ! isset( $args['id'], $args['fields'] ) || ! is_array( $args['fields'] ) ) {
return;
}
$args['count'] = 0;
$field_group = new CMB2_Field( array(
'field_args' => $args,
'object_type' => $this->object_type(),
'object_id' => $this->object_id(),
) );
$desc = $field_group->args( 'description' );
$label = $field_group->args( 'name' );
$sortable = $field_group->options( 'sortable' ) ? ' sortable' : '';
$group_val = (array) $field_group->value();
$nrows = count( $group_val );
$remove_disabled = $nrows <= 1 ? 'disabled="disabled" ' : '';
echo '<div class="cmb-row cmb-repeat-group-wrap"><div class="cmb-td"><div id="', $field_group->id(), '_repeat" class="cmb-nested cmb-field-list cmb-repeatable-group'. $sortable .'" style="width:100%;">';
if ( $desc || $label ) {
$class = $desc ? ' cmb-group-description' : '';
echo '<div class="cmb-row'. $class .'"><div class="cmb-th">';
if ( $label )
echo '<h2 class="cmb-group-name">'. $label .'</h2>';
if ( $desc )
echo '<p class="cmb2-metabox-description">'. $desc .'</p>';
echo '</div></div>';
}
if ( ! empty( $group_val ) ) {
foreach ( $group_val as $iterator => $field_id ) {
$this->render_group_row( $field_group, $remove_disabled );
}
} else {
$this->render_group_row( $field_group, $remove_disabled );
}
echo '<div class="cmb-row"><div class="cmb-td"><p class="cmb-add-row"><button data-selector="', $field_group->id() ,'_repeat" data-grouptitle="', $field_group->options( 'group_title' ) ,'" class="cmb-add-group-row button">'. $field_group->options( 'add_button' ) .'</button></p></div></div>';
echo '</div></div></div>';
}
public function render_group_row( $field_group, $remove_disabled ) {
echo '
<div class="cmb-row cmb-repeatable-grouping" data-iterator="'. $field_group->count() .'">
<div class="cmb-td">
<div class="cmb-nested cmb-field-list" style="width: 100%;">';
if ( $field_group->options( 'group_title' ) ) {
echo '
<div class="cmb-row cmb-group-title">
<div class="cmb-th">
', sprintf( '<h4>%1$s</h4>', $field_group->replace_hash( $field_group->options( 'group_title' ) ) ), '
</div>
</div>
';
}
// Loop and render repeatable group fields
foreach ( array_values( $field_group->args( 'fields' ) ) as $field_args ) {
if ( 'hidden' == $field_args['type'] ) {
// Save rendering for after the metabox
$this->add_hidden_field( array(
'field_args' => $field_args,
'group_field' => $field_group,
) );
} else {
$field_args['show_names'] = $field_group->args( 'show_names' );
$field_args['context'] = $field_group->args( 'context' );
$field = new CMB2_Field( array(
'field_args' => $field_args,
'group_field' => $field_group,
) );
$field->render_field();
}
}
echo '
<div class="cmb-row cmb-remove-field-row">
<div class="cmb-remove-row">
<button '. $remove_disabled .'data-selector="'. $field_group->id() .'_repeat" class="button cmb-remove-group-row alignright">'. $field_group->options( 'remove_button' ) .'</button>
</div>
</div>
</div>
</div>
</div>
';
$field_group->args['count']++;
}
/**
* Add a hidden field to the list of hidden fields to be rendered later
* @since 2.0.0
* @param array $args Array of arguments to be passed to CMB2_Field
*/
public function add_hidden_field( $args ) {
$this->hidden_fields = ! empty( $this->hidden_fields ) ? $this->hidden_fields : array();
$this->hidden_fields[] = new CMB2_Types( new CMB2_Field( $args ) );
}
/**
* Loop through and output hidden fields
* @since 2.0.0
*/
public function render_hidden_fields() {
if ( ! empty( $this->hidden_fields ) ) {
foreach ( $this->hidden_fields as $hidden ) {
$hidden->render();
}
}
}
/**
* Loops through and saves field data
* @since 1.0.0
* @param int $object_id Object ID
* @param string $object_type Type of object being saved. (e.g., post, user, or comment)
*/
public function save_fields( $object_id = 0, $object_type = '', $data_to_save ) {
$this->data_to_save = $data_to_save;
$object_id = $this->object_id( $object_id );
$object_type = $this->object_type( $object_type );
$this->process_fields();
// If options page, save the updated options
if ( $object_type == 'options-page' ) {
cmb2_options( $object_id )->set();
}
/**
* Fires after all fields have been saved.
*
* The dynamic portion of the hook name, $object_type, refers to the metabox/form's object type
* Usually `post` (this applies to all post-types).
* Could also be `comment`, `user` or `options-page`.
*
* @param int $object_id The ID of the current object
* @param array $cmb_id The current box ID
* @param string $updated All fields that were updated.
* Will only include fields that had values change.
* @param array $cmb This CMB2 object
*/
do_action( "cmb2_save_{$object_type}_fields", $object_id, $this->cmb_id, $this->updated, $this );
}
/**
* Process and save form fields
* @since 2.0.0
*/
public function process_fields() {
$this->prop( 'show_on', array() );
// save field ids of those that are updated
$this->updated = array();
foreach ( $this->prop( 'fields' ) as $field_args ) {
$this->process_field( $field_args );
}
}
/**
* Process and save a field
* @since 2.0.0
* @param array $field_args Array of field arguments
*/
public function process_field( $field_args ) {
switch ( $field_args['type'] ) {
case 'group':
$this->save_group( $field_args );
break;
case 'title':
// Don't process title fields
break;
default:
// Save default fields
$field = new CMB2_Field( array(
'field_args' => $field_args,
'object_type' => $this->object_type(),
'object_id' => $this->object_id(),
) );
if ( $updated = $field->save_field( $this->data_to_save ) ) {
$this->updated[] = $field->id();
}
break;
}
}
/**
* Save a repeatable group
*/
public function save_group( $args ) {
if ( ! isset( $args['id'], $args['fields'], $this->data_to_save[ $args['id'] ] ) || ! is_array( $args['fields'] ) )
return;
$field_group = new CMB2_Field( array(
'field_args' => $args,
'object_type' => $this->object_type(),
'object_id' => $this->object_id(),
) );
$base_id = $field_group->id();
$old = $field_group->get_data();
$group_vals = $this->data_to_save[ $base_id ];
$saved = array();
$is_updated = false;
$field_group->index = 0;
// $group_vals[0]['color'] = '333';
foreach ( array_values( $field_group->fields() ) as $field_args ) {
$field = new CMB2_Field( array(
'field_args' => $field_args,
'group_field' => $field_group,
) );
$sub_id = $field->id( true );
foreach ( (array) $group_vals as $field_group->index => $post_vals ) {
// Get value
$new_val = isset( $group_vals[ $field_group->index ][ $sub_id ] )
? $group_vals[ $field_group->index ][ $sub_id ]
: false;
// Sanitize
$new_val = $field->sanitization_cb( $new_val );
if ( 'file' == $field->type() && is_array( $new_val ) ) {
// Add image ID to the array stack
$saved[ $field_group->index ][ $new_val['field_id'] ] = $new_val['attach_id'];
// Reset var to url string
$new_val = $new_val['url'];
}
// Get old value
$old_val = is_array( $old ) && isset( $old[ $field_group->index ][ $sub_id ] )
? $old[ $field_group->index ][ $sub_id ]
: false;
$is_updated = ( ! empty( $new_val ) && $new_val != $old_val );
$is_removed = ( empty( $new_val ) && ! empty( $old_val ) );
// Compare values and add to `$updated` array
if ( $is_updated || $is_removed ) {
$this->updated[] = $base_id .'::'. $field_group->index .'::'. $sub_id;
}
// Add to `$saved` array
$saved[ $field_group->index ][ $sub_id ] = $new_val;
}
$saved[ $field_group->index ] = array_filter( $saved[ $field_group->index ] );
}
$saved = array_filter( $saved );
$field_group->update_data( $saved, true );
}
/**
* Get object id from global space if no id is provided
* @since 1.0.0
* @param integer $object_id Object ID
* @return integer $object_id Object ID
*/
public function object_id( $object_id = 0 ) {
if ( $object_id ) {
$this->object_id = $object_id;
return $this->object_id;
}
if ( $this->object_id ) {
return $this->object_id;
}
// Try to get our object ID from the global space
switch ( $this->object_type() ) {
case 'user':
if ( ! isset( $this->new_user_page ) ) {
$object_id = isset( $GLOBALS['user_ID'] ) ? $GLOBALS['user_ID'] : $object_id;
}
$object_id = isset( $_REQUEST['user_id'] ) ? $_REQUEST['user_id'] : $object_id;
break;
default:
$object_id = isset( $GLOBALS['post']->ID ) ? $GLOBALS['post']->ID : $object_id;
$object_id = isset( $_REQUEST['post'] ) ? $_REQUEST['post'] : $object_id;
break;
}
// reset to id or 0
$this->object_id = $object_id ? $object_id : 0;
return $this->object_id;
}
/**
* Sets the $object_type based on metabox settings
* @since 1.0.0
* @param array|string $meta_box Metabox config array or explicit setting
* @return string Object type
*/
public function mb_object_type() {
if ( null !== $this->mb_object_type ) {
return $this->mb_object_type;
}
if ( $this->is_options_page_mb() ) {
$this->mb_object_type = 'options-page';
return $this->mb_object_type;
}
if ( ! $this->prop( 'object_types' ) ) {
$this->mb_object_type = 'post';
return $this->mb_object_type;
}
$type = false;
// check if 'object_types' is a string
if ( is_string( $this->prop( 'object_types' ) ) ) {
$type = $this->prop( 'object_types' );
}
// if it's an array of one, extract it
elseif ( is_array( $this->prop( 'object_types' ) ) && count( $this->prop( 'object_types' ) === 1 ) ) {
$cpts = $this->prop( 'object_types' );
$type = is_string( end( $cpts ) )
? end( $cpts )
: false;
}
if ( ! $type ) {
$this->mb_object_type = 'post';
return $this->mb_object_type;
}
// Get our object type
if ( 'user' == $type )
$this->mb_object_type = 'user';
elseif ( 'comment' == $type )
$this->mb_object_type = 'comment';
else
$this->mb_object_type = 'post';
return $this->mb_object_type;
}
/**
* Determines if metabox is for an options page
* @since 1.0.1
* @return boolean True/False
*/
public function is_options_page_mb() {
return ( isset( $this->meta_box['show_on']['key'] ) && 'options-page' === $this->meta_box['show_on']['key'] || array_key_exists( 'options-page', $this->meta_box['show_on'] ) );
}
/**
* Returns the object type
* @since 1.0.0
* @return string Object type
*/
public function object_type( $object_type = '' ) {
if ( $object_type ) {
$this->object_type = $object_type;
return $this->object_type;
}
if ( $this->object_type ) {
return $this->object_type;
}
global $pagenow;
if ( in_array( $pagenow, array( 'user-edit.php', 'profile.php', 'user-new.php' ), true ) ) {
$this->object_type = 'user';
} elseif ( in_array( $pagenow, array( 'edit-comments.php', 'comment.php' ), true ) ) {
$this->object_type = 'comment';
} else {
$this->object_type = 'post';
}
return $this->object_type;
}
/**
* Get metabox property and optionally set a fallback
* @since 2.0.0
* @param string $property Metabox config property to retrieve
* @param mixex $fallback Fallback value to set if no value found
* @return mixed Metabox config property value or false
*/
public function prop( $property, $fallback = null ) {
if ( array_key_exists( $property, $this->meta_box ) ) {
return $this->meta_box[ $property ];
} elseif ( $fallback ) {
return $this->meta_box[ $property ] = $fallback;
}
}
/**
* Add a field to the metabox
* @since 2.0.0
* @param array $args Metabox field config array
* @return bool True if field was added
*/
public function add_field( array $field ) {
if ( ! is_array( $field ) || ! array_key_exists( 'id', $field ) ) {
return false;
}
$this->meta_box['fields'][ $field['id'] ] = $field;
return true;
}
/**
* Update or add a property to a field
* @since 2.0.0
* @param string $field_id Field id
* @param string $property Field property to set/update
* @param mixed $value Value to set the field property
* @return bool True if field was updated
*/
public function update_field_property( $field_id, $property, $value ) {
if ( ! array_key_exists( $field_id, $this->meta_box['fields'] ) ) {
return false;
}
$this->meta_box['fields'][ $field_id ][ $property ] = $value;
return true;
}
/**
* Generate a unique nonce field for each registered meta_box
* @since 2.0.0
* @return string unique nonce hidden input
*/
public function nonce_field() {
wp_nonce_field( $this->nonce(), $this->nonce(), false, true );
}
/**
* Generate a unique nonce for each registered meta_box
* @since 2.0.0
* @return string unique nonce string
*/
public function nonce() {
if ( isset( $this->generated_nonce ) ) {
return $this->generated_nonce;
}
$this->generated_nonce = sanitize_html_class( 'nonce_'. basename( __FILE__ ) . $this->cmb_id );
return $this->generated_nonce;
}
/**
* Magic getter for our object.
* @param string $field
* @throws Exception Throws an exception if the field is invalid.
* @return mixed
*/
public function __get( $field ) {
switch( $field ) {
case 'cmb_id':
case 'meta_box':
case 'updated':
return $this->{$field};
default:
throw new Exception( 'Invalid '. __CLASS__ .' property: ' . $field );
}
}
}
/**
* Stores each CMB2 instance
*/
class CMB2_Boxes {
/**
* Array of all metabox objects
* @var array
* @since 2.0.0
*/
protected static $meta_boxes = array();
public static function get( $cmb_id ) {
if ( empty( self::$meta_boxes ) || empty( self::$meta_boxes[ $cmb_id ] ) ) {
return false;
}
return self::$meta_boxes[ $cmb_id ];
}
public static function add( $meta_box ) {
self::$meta_boxes[ $meta_box->cmb_id ] = $meta_box;
}
}
// End. That's it, folks! //