1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Handles hooking CMB2 forms/metaboxes into the post/attachement/user screens |
4
|
|
|
* and handles hooking in and saving those fields. |
5
|
|
|
* |
6
|
|
|
* @since 2.0.0 |
7
|
|
|
* |
8
|
|
|
* @category WordPress_Plugin |
9
|
|
|
* @package CMB2 |
10
|
|
|
* @author WebDevStudios |
11
|
|
|
* @license GPL-2.0+ |
12
|
|
|
* @link http://webdevstudios.com |
13
|
|
|
*/ |
14
|
|
|
class CMB2_hookup { |
|
|
|
|
15
|
|
|
|
16
|
|
|
/** |
17
|
|
|
* Array of all hooks done (to be run once) |
18
|
|
|
* @var array |
19
|
|
|
* @since 2.0.0 |
20
|
|
|
*/ |
21
|
|
|
protected static $hooks_completed = array(); |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* Only allow JS registration once |
25
|
|
|
* @var bool |
26
|
|
|
* @since 2.0.7 |
27
|
|
|
*/ |
28
|
|
|
protected static $js_registration_done = false; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Only allow CSS registration once |
32
|
|
|
* @var bool |
33
|
|
|
* @since 2.0.7 |
34
|
|
|
*/ |
35
|
|
|
protected static $css_registration_done = false; |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* @var CMB2 object |
39
|
|
|
* @since 2.0.2 |
40
|
|
|
*/ |
41
|
|
|
protected $cmb; |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* CMB taxonomies array for term meta |
45
|
|
|
* @var array |
46
|
|
|
* @since 2.2.0 |
47
|
|
|
*/ |
48
|
|
|
protected $taxonomies = array(); |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* The object type we are performing the hookup for |
52
|
|
|
* @var string |
53
|
|
|
* @since 2.0.9 |
54
|
|
|
*/ |
55
|
|
|
protected $object_type = 'post'; |
56
|
|
|
|
57
|
|
|
public function __construct( CMB2 $cmb ) { |
58
|
|
|
$this->cmb = $cmb; |
59
|
|
|
$this->object_type = $this->cmb->mb_object_type(); |
60
|
|
|
|
61
|
|
|
$this->universal_hooks(); |
62
|
|
|
|
63
|
|
|
if ( is_admin() ) { |
64
|
|
|
|
65
|
|
|
switch ( $this->object_type ) { |
66
|
|
|
case 'post': |
67
|
|
|
return $this->post_hooks(); |
|
|
|
|
68
|
|
|
case 'comment': |
69
|
|
|
return $this->comment_hooks(); |
|
|
|
|
70
|
|
|
case 'user': |
71
|
|
|
return $this->user_hooks(); |
|
|
|
|
72
|
|
|
case 'term': |
73
|
|
|
return $this->term_hooks(); |
|
|
|
|
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
} |
77
|
|
|
} |
78
|
|
|
|
79
|
|
|
public function universal_hooks() { |
80
|
|
|
// Handle oembed Ajax |
81
|
|
|
$this->once( 'wp_ajax_cmb2_oembed_handler', array( cmb2_ajax(), 'oembed_handler' ) ); |
82
|
|
|
$this->once( 'wp_ajax_nopriv_cmb2_oembed_handler', array( cmb2_ajax(), 'oembed_handler' ) ); |
83
|
|
|
|
84
|
|
|
foreach ( get_class_methods( 'CMB2_Show_Filters' ) as $filter ) { |
85
|
|
|
add_filter( 'cmb2_show_on', array( 'CMB2_Show_Filters', $filter ), 10, 3 ); |
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
if ( is_admin() ) { |
89
|
|
|
// register our scripts and styles for cmb |
90
|
|
|
$this->once( 'admin_enqueue_scripts', array( __CLASS__, 'register_scripts' ), 8 ); |
91
|
|
|
} |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
public function post_hooks() { |
95
|
|
|
add_action( 'add_meta_boxes', array( $this, 'add_metaboxes' ) ); |
96
|
|
|
add_action( 'add_attachment', array( $this, 'save_post' ) ); |
97
|
|
|
add_action( 'edit_attachment', array( $this, 'save_post' ) ); |
98
|
|
|
add_action( 'save_post', array( $this, 'save_post' ), 10, 2 ); |
99
|
|
|
|
100
|
|
|
$this->once( 'admin_enqueue_scripts', array( $this, 'do_scripts' ) ); |
101
|
|
|
} |
102
|
|
|
|
103
|
|
|
public function comment_hooks() { |
104
|
|
|
add_action( 'add_meta_boxes_comment', array( $this, 'add_metaboxes' ) ); |
105
|
|
|
add_action( 'edit_comment', array( $this, 'save_comment' ) ); |
106
|
|
|
|
107
|
|
|
$this->once( 'admin_enqueue_scripts', array( $this, 'do_scripts' ) ); |
108
|
|
|
} |
109
|
|
|
|
110
|
1 |
|
public function user_hooks() { |
111
|
1 |
|
$priority = $this->get_priority(); |
112
|
1 |
|
|
113
|
|
|
add_action( 'show_user_profile', array( $this, 'user_metabox' ), $priority ); |
114
|
|
|
add_action( 'edit_user_profile', array( $this, 'user_metabox' ), $priority ); |
115
|
|
|
add_action( 'user_new_form', array( $this, 'user_new_metabox' ), $priority ); |
116
|
1 |
|
|
117
|
|
|
add_action( 'personal_options_update', array( $this, 'save_user' ) ); |
118
|
1 |
|
add_action( 'edit_user_profile_update', array( $this, 'save_user' ) ); |
119
|
|
|
add_action( 'user_register', array( $this, 'save_user' ) ); |
120
|
1 |
|
} |
121
|
1 |
|
|
122
|
1 |
|
public function term_hooks() { |
123
|
1 |
|
if ( ! function_exists( 'get_term_meta' ) ) { |
124
|
1 |
|
wp_die( __( 'Term Metadata is a WordPress > 4.4 feature. Please upgrade your WordPress install.', 'cmb2' ) ); |
125
|
1 |
|
} |
126
|
1 |
|
|
127
|
1 |
|
if ( ! $this->cmb->prop( 'taxonomies' ) ) { |
128
|
1 |
|
wp_die( __( 'Term metaboxes configuration requires a \'taxonomies\' parameter', 'cmb2' ) ); |
129
|
|
|
} |
130
|
1 |
|
|
131
|
|
|
$this->taxonomies = (array) $this->cmb->prop( 'taxonomies' ); |
132
|
|
|
$show_on_term_add = $this->cmb->prop( 'new_term_section' ); |
133
|
1 |
|
$priority = $this->get_priority( 8 ); |
134
|
|
|
|
135
|
1 |
|
foreach ( $this->taxonomies as $taxonomy ) { |
136
|
|
|
// Display our form data |
137
|
1 |
|
add_action( "{$taxonomy}_edit_form", array( $this, 'term_metabox' ), $priority, 2 ); |
138
|
|
|
|
139
|
1 |
|
$show_on_add = is_array( $show_on_term_add ) |
140
|
1 |
|
? in_array( $taxonomy, $show_on_term_add ) |
141
|
1 |
|
: (bool) $show_on_term_add; |
142
|
1 |
|
|
143
|
1 |
|
$show_on_add = apply_filters( "cmb2_show_on_term_add_form_{$this->cmb->cmb_id}", $show_on_add, $this->cmb ); |
144
|
1 |
|
|
145
|
|
|
// Display form in add-new section (unless specified not to) |
146
|
1 |
|
if ( $show_on_add ) { |
147
|
|
|
add_action( "{$taxonomy}_add_form_fields", array( $this, 'term_metabox' ), $priority, 2 ); |
148
|
1 |
|
} |
149
|
1 |
|
|
150
|
1 |
|
} |
151
|
1 |
|
|
152
|
1 |
|
add_action( 'created_term', array( $this, 'save_term' ), 10, 3 ); |
153
|
1 |
|
add_action( 'edited_terms', array( $this, 'save_term' ), 10, 2 ); |
154
|
1 |
|
|
155
|
1 |
|
add_action( 'delete_term', array( $this, 'delete_term' ), 10, 3 ); |
156
|
1 |
|
} |
157
|
1 |
|
|
158
|
1 |
|
/** |
159
|
1 |
|
* Registers styles for CMB2 |
160
|
1 |
|
* @since 2.0.7 |
161
|
1 |
|
*/ |
162
|
|
|
protected static function register_styles() { |
163
|
1 |
|
if ( self::$css_registration_done ) { |
164
|
1 |
|
return; |
165
|
1 |
|
} |
166
|
1 |
|
|
167
|
|
|
// Only use minified files if SCRIPT_DEBUG is off |
168
|
1 |
|
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
169
|
1 |
|
$front = is_admin() ? '' : '-front'; |
170
|
|
|
$rtl = is_rtl() ? '-rtl' : ''; |
171
|
1 |
|
|
172
|
1 |
|
// Filter required styles and register stylesheet |
173
|
1 |
|
$styles = apply_filters( 'cmb2_style_dependencies', array() ); |
174
|
1 |
|
wp_register_style( 'cmb2-styles', cmb2_utils()->url( "css/cmb2{$front}{$rtl}{$min}.css" ), $styles ); |
175
|
1 |
|
|
176
|
1 |
|
self::$css_registration_done = true; |
177
|
1 |
|
} |
178
|
1 |
|
|
179
|
|
|
/** |
180
|
1 |
|
* Registers scripts for CMB2 |
181
|
|
|
* @since 2.0.7 |
182
|
1 |
|
*/ |
183
|
1 |
|
protected static function register_js() { |
184
|
|
|
if ( self::$js_registration_done ) { |
185
|
|
|
return; |
186
|
|
|
} |
187
|
|
|
|
188
|
|
|
$hook = is_admin() ? 'admin_footer' : 'wp_footer'; |
189
|
|
|
add_action( $hook, array( 'CMB2_JS', 'enqueue' ), 8 ); |
190
|
|
|
|
191
|
|
|
self::$js_registration_done = true; |
192
|
|
|
} |
193
|
|
|
|
194
|
|
|
/** |
195
|
|
|
* Registers scripts and styles for CMB2 |
196
|
|
|
* @since 1.0.0 |
197
|
|
|
*/ |
198
|
|
|
public static function register_scripts() { |
199
|
|
|
self::register_styles(); |
200
|
|
|
self::register_js(); |
201
|
|
|
} |
202
|
|
|
|
203
|
|
|
/** |
204
|
|
|
* Enqueues scripts and styles for CMB2 |
205
|
|
|
* @since 1.0.0 |
206
|
|
|
*/ |
207
|
|
|
public function do_scripts( $hook ) { |
208
|
|
|
// only enqueue our scripts/styles on the proper pages |
209
|
|
|
if ( in_array( $hook, array( 'post.php', 'post-new.php', 'page-new.php', 'page.php', 'comment.php' ), true ) ) { |
210
|
|
|
if ( $this->cmb->prop( 'cmb_styles' ) ) { |
211
|
|
|
self::enqueue_cmb_css(); |
212
|
|
|
} |
213
|
|
|
if ( $this->cmb->prop( 'enqueue_js' ) ) { |
214
|
|
|
self::enqueue_cmb_js(); |
215
|
|
|
} |
216
|
|
|
} |
217
|
|
|
} |
218
|
|
|
|
219
|
|
|
/** |
220
|
|
|
* Add metaboxes (to 'post' or 'comment' object types) |
221
|
|
|
* @since 1.0.0 |
222
|
|
|
*/ |
223
|
|
|
public function add_metaboxes() { |
224
|
|
|
|
225
|
|
|
if ( ! $this->show_on() ) { |
226
|
|
|
return; |
227
|
|
|
} |
228
|
|
|
|
229
|
|
|
foreach ( $this->cmb->prop( 'object_types' ) as $post_type ) { |
230
|
|
|
/** |
231
|
|
|
* To keep from registering an actual post-screen metabox, |
232
|
|
|
* omit the 'title' attribute from the metabox registration array. |
233
|
|
|
* |
234
|
|
|
* (WordPress will not display metaboxes without titles anyway) |
235
|
|
|
* |
236
|
|
|
* This is a good solution if you want to output your metaboxes |
237
|
|
|
* Somewhere else in the post-screen |
238
|
|
|
*/ |
239
|
|
|
if ( $this->cmb->prop( 'title' ) ) { |
240
|
|
|
|
241
|
|
|
if ( $this->cmb->prop( 'closed' ) ) { |
242
|
|
|
add_filter( "postbox_classes_{$post_type}_{$this->cmb->cmb_id}", array( $this, 'close_metabox_class' ) ); |
243
|
|
|
} |
244
|
|
|
|
245
|
|
|
add_meta_box( $this->cmb->cmb_id, $this->cmb->prop( 'title' ), array( $this, 'metabox_callback' ), $post_type, $this->cmb->prop( 'context' ), $this->cmb->prop( 'priority' ) ); |
246
|
|
|
} |
247
|
|
|
} |
248
|
|
|
} |
249
|
|
|
|
250
|
|
|
/** |
251
|
|
|
* Add 'closed' class to metabox |
252
|
|
|
* @since 2.0.0 |
253
|
|
|
* @param array $classes Array of classes |
254
|
|
|
* @return array Modified array of classes |
255
|
|
|
*/ |
256
|
|
|
public function close_metabox_class( $classes ) { |
257
|
|
|
$classes[] = 'closed'; |
258
|
|
|
return $classes; |
259
|
|
|
} |
260
|
|
|
|
261
|
|
|
/** |
262
|
|
|
* Display metaboxes for a post or comment object |
263
|
|
|
* @since 1.0.0 |
264
|
|
|
*/ |
265
|
|
|
public function metabox_callback() { |
266
|
|
|
$object_id = 'comment' == $this->object_type ? get_comment_ID() : get_the_ID(); |
267
|
|
|
$this->cmb->show_form( $object_id, $this->object_type ); |
268
|
|
|
} |
269
|
|
|
|
270
|
|
|
/** |
271
|
|
|
* Display metaboxes for new user page |
272
|
|
|
* @since 1.0.0 |
273
|
|
|
*/ |
274
|
|
|
public function user_new_metabox( $section ) { |
|
|
|
|
275
|
|
|
if ( $section == $this->cmb->prop( 'new_user_section' ) ) { |
276
|
|
|
$object_id = $this->cmb->object_id(); |
277
|
|
|
$this->cmb->object_id( isset( $_REQUEST['user_id'] ) ? $_REQUEST['user_id'] : $object_id ); |
278
|
|
|
$this->user_metabox(); |
279
|
|
|
} |
280
|
|
|
} |
281
|
|
|
|
282
|
|
|
/** |
283
|
|
|
* Display metaboxes for a user object |
284
|
|
|
* @since 1.0.0 |
285
|
|
|
*/ |
286
|
|
|
public function user_metabox() { |
287
|
|
|
$this->show_form_for_type( 'user' ); |
288
|
|
|
} |
289
|
|
|
|
290
|
|
|
/** |
291
|
|
|
* Display metaboxes for a taxonomy term object |
292
|
|
|
* @since 2.2.0 |
293
|
|
|
*/ |
294
|
|
|
public function term_metabox() { |
295
|
|
|
$this->show_form_for_type( 'term' ); |
296
|
|
|
} |
297
|
|
|
|
298
|
|
|
/** |
299
|
|
|
* Display metaboxes for an object type |
300
|
|
|
* @since 2.2.0 |
301
|
|
|
* @param string $type Object type |
302
|
|
|
* @return void |
303
|
|
|
*/ |
304
|
|
|
public function show_form_for_type( $type ) { |
305
|
|
|
if ( $type != $this->cmb->mb_object_type() ) { |
306
|
|
|
return; |
307
|
|
|
} |
308
|
|
|
|
309
|
|
|
if ( ! $this->show_on() ) { |
310
|
|
|
return; |
311
|
|
|
} |
312
|
|
|
|
313
|
|
|
if ( $this->cmb->prop( 'cmb_styles' ) ) { |
314
|
|
|
self::enqueue_cmb_css(); |
315
|
|
|
} |
316
|
|
|
if ( $this->cmb->prop( 'enqueue_js' ) ) { |
317
|
|
|
self::enqueue_cmb_js(); |
318
|
|
|
} |
319
|
|
|
|
320
|
|
|
$this->cmb->show_form( 0, $type ); |
321
|
|
|
} |
322
|
|
|
|
323
|
|
|
/** |
324
|
|
|
* Determines if metabox should be shown in current context |
325
|
|
|
* @since 2.0.0 |
326
|
|
|
* @return bool Whether metabox should be added/shown |
327
|
|
|
*/ |
328
|
|
|
public function show_on() { |
329
|
|
|
// If metabox is requesting to be conditionally shown |
330
|
|
|
$show = $this->cmb->should_show(); |
331
|
|
|
|
332
|
|
|
/** |
333
|
|
|
* Filter to determine if metabox should show. Default is true |
334
|
|
|
* |
335
|
|
|
* @param array $show Default is true, show the metabox |
336
|
|
|
* @param mixed $meta_box_args Array of the metabox arguments |
337
|
|
|
* @param mixed $cmb The CMB2 instance |
338
|
|
|
*/ |
339
|
|
|
$show = (bool) apply_filters( 'cmb2_show_on', $show, $this->cmb->meta_box, $this->cmb ); |
340
|
|
|
|
341
|
|
|
return $show; |
342
|
|
|
} |
343
|
|
|
|
344
|
|
|
/** |
345
|
|
|
* Get the CMB priority property set to numeric hook priority. |
346
|
|
|
* @since 2.2.0 |
347
|
|
|
* @param integer $default Default display hook priority. |
348
|
|
|
* @return integer Hook priority. |
349
|
|
|
*/ |
350
|
1 |
|
public function get_priority( $default = 10 ) { |
351
|
1 |
|
$priority = $this->cmb->prop( 'priority' ); |
352
|
|
|
|
353
|
1 |
|
if ( ! is_numeric( $priority ) ) { |
354
|
|
|
switch ( $priority ) { |
355
|
|
|
|
356
|
|
|
case 'high': |
357
|
|
|
$priority = 5; |
358
|
|
|
break; |
359
|
|
|
|
360
|
1 |
|
case 'low': |
361
|
1 |
|
$priority = 20; |
362
|
1 |
|
break; |
363
|
1 |
|
|
364
|
|
|
default: |
365
|
|
|
$priority = $default; |
366
|
|
|
break; |
367
|
1 |
|
} |
368
|
|
|
} |
369
|
|
|
|
370
|
|
|
return $priority; |
371
|
|
|
} |
372
|
|
|
|
373
|
|
|
/** |
374
|
|
|
* Save data from post metabox |
375
|
|
|
* @since 1.0.0 |
376
|
|
|
* @param int $post_id Post ID |
377
|
|
|
* @param mixed $post Post object |
378
|
|
|
* @return null |
379
|
|
|
*/ |
380
|
|
|
public function save_post( $post_id, $post = false ) { |
|
|
|
|
381
|
|
|
|
382
|
|
|
$post_type = $post ? $post->post_type : get_post_type( $post_id ); |
383
|
|
|
|
384
|
|
|
$do_not_pass_go = ( |
385
|
|
|
! $this->can_save( $post_type ) |
386
|
|
|
// check user editing permissions |
387
|
|
|
|| ( 'page' == $post_type && ! current_user_can( 'edit_page', $post_id ) ) |
388
|
|
|
|| ! current_user_can( 'edit_post', $post_id ) |
389
|
|
|
); |
390
|
|
|
|
391
|
|
|
if ( $do_not_pass_go ) { |
392
|
|
|
// do not collect $200 |
393
|
|
|
return; |
394
|
|
|
} |
395
|
|
|
|
396
|
|
|
// take a trip to reading railroad – if you pass go collect $200 |
397
|
|
|
$this->cmb->save_fields( $post_id, 'post', $_POST ); |
398
|
|
|
} |
399
|
|
|
|
400
|
|
|
/** |
401
|
|
|
* Save data from comment metabox |
402
|
|
|
* @since 2.0.9 |
403
|
|
|
* @param int $comment_id Comment ID |
404
|
|
|
* @return null |
405
|
|
|
*/ |
406
|
|
|
public function save_comment( $comment_id ) { |
|
|
|
|
407
|
|
|
|
408
|
|
|
$can_edit = current_user_can( 'moderate_comments', $comment_id ); |
409
|
|
|
|
410
|
|
|
if ( $this->can_save( get_comment_type( $comment_id ) ) && $can_edit ) { |
411
|
|
|
$this->cmb->save_fields( $comment_id, 'comment', $_POST ); |
412
|
|
|
} |
413
|
|
|
} |
414
|
|
|
|
415
|
|
|
/** |
416
|
|
|
* Save data from user fields |
417
|
|
|
* @since 1.0.x |
418
|
|
|
* @param int $user_id User ID |
419
|
|
|
* @return null |
420
|
|
|
*/ |
421
|
|
|
public function save_user( $user_id ) { |
|
|
|
|
422
|
|
|
// check permissions |
423
|
|
|
if ( $this->can_save( 'user' ) ) { |
424
|
|
|
$this->cmb->save_fields( $user_id, 'user', $_POST ); |
425
|
|
|
} |
426
|
|
|
} |
427
|
|
|
|
428
|
|
|
/** |
429
|
|
|
* Save data from term fields |
430
|
|
|
* @since 1.0.x |
431
|
|
|
* @param int $term_id Term ID |
432
|
|
|
* @param int $tt_id Term Taxonomy ID |
433
|
|
|
* @param string $taxonomy Taxonomy |
434
|
|
|
* @return null |
435
|
|
|
*/ |
436
|
|
|
public function save_term( $term_id, $tt_id, $taxonomy = '' ) { |
|
|
|
|
437
|
|
|
$taxonomy = $taxonomy ? $taxonomy : $tt_id; |
438
|
|
|
|
439
|
|
|
// check permissions |
440
|
|
|
if ( $this->taxonomy_can_save( $taxonomy ) && $this->can_save( 'term' ) ) { |
441
|
|
|
$this->cmb->save_fields( $term_id, 'term', $_POST ); |
442
|
|
|
} |
443
|
|
|
} |
444
|
|
|
|
445
|
|
|
/** |
446
|
|
|
* Delete term meta when a term is deleted. |
447
|
|
|
* @since 1.0.x |
448
|
|
|
* @param int $term_id Term ID |
449
|
|
|
* @param int $tt_id Term Taxonomy ID |
450
|
|
|
* @param string $taxonomy Taxonomy |
451
|
|
|
* @return null |
452
|
|
|
*/ |
453
|
|
|
public function delete_term( $term_id, $tt_id, $taxonomy = '' ) { |
454
|
|
|
if ( $this->taxonomy_can_save( $taxonomy ) ) { |
455
|
|
|
|
456
|
|
|
foreach ( $this->cmb->prop( 'fields' ) as $field ) { |
457
|
|
|
$data_to_delete[ $field['id'] ] = ''; |
|
|
|
|
458
|
|
|
} |
459
|
|
|
|
460
|
|
|
$this->cmb->save_fields( $term_id, 'term', $data_to_delete ); |
|
|
|
|
461
|
|
|
} |
462
|
|
|
} |
463
|
|
|
|
464
|
|
|
/** |
465
|
|
|
* Determines if the current object is able to be saved |
466
|
|
|
* @since 2.0.9 |
467
|
|
|
* @param string $type Current post_type or comment_type |
468
|
|
|
* @return bool Whether object can be saved |
469
|
|
|
*/ |
470
|
|
|
public function can_save( $type = '' ) { |
|
|
|
|
471
|
|
|
return ( |
472
|
|
|
$this->cmb->prop( 'save_fields' ) |
473
|
|
|
// check nonce |
474
|
|
|
&& isset( $_POST[ $this->cmb->nonce() ] ) |
475
|
|
|
&& wp_verify_nonce( $_POST[ $this->cmb->nonce() ], $this->cmb->nonce() ) |
476
|
|
|
// check if autosave |
477
|
|
|
&& ! ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) |
478
|
|
|
// get the metabox types & compare it to this type |
479
|
|
|
&& ( $type && in_array( $type, $this->cmb->prop( 'object_types' ) ) ) |
480
|
|
|
); |
481
|
|
|
} |
482
|
|
|
|
483
|
|
|
/** |
484
|
|
|
* Determine if taxonomy of term being modified is cmb2-editable. |
485
|
|
|
* @since 2.2.0 |
486
|
|
|
* @param string $taxonomy Taxonomy of term being modified. |
487
|
|
|
* @return bool Whether taxonomy is editable. |
488
|
|
|
*/ |
489
|
|
|
public function taxonomy_can_save( $taxonomy ) { |
490
|
|
|
$taxonomy = $taxonomy ? $taxonomy : $tt_id; |
|
|
|
|
491
|
|
|
|
492
|
|
|
if ( empty( $this->taxonomies ) || ! in_array( $taxonomy, $this->taxonomies ) ) { |
493
|
|
|
return false; |
494
|
|
|
} |
495
|
|
|
|
496
|
|
|
$taxonomy_object = get_taxonomy( $taxonomy ); |
497
|
|
|
// Can the user edit this term? |
498
|
|
|
if ( ! isset( $taxonomy_object->cap ) || ! current_user_can( $taxonomy_object->cap->edit_terms ) ) { |
499
|
|
|
return false; |
500
|
|
|
} |
501
|
|
|
|
502
|
|
|
return true; |
503
|
|
|
} |
504
|
|
|
|
505
|
|
|
/** |
506
|
|
|
* Ensures WordPress hook only gets fired once |
507
|
|
|
* @since 2.0.0 |
508
|
|
|
* @param string $action The name of the filter to hook the $hook callback to. |
509
|
|
|
* @param callback $hook The callback to be run when the filter is applied. |
510
|
|
|
* @param integer $priority Order the functions are executed |
511
|
|
|
* @param int $accepted_args The number of arguments the function accepts. |
512
|
|
|
*/ |
513
|
|
|
public function once( $action, $hook, $priority = 10, $accepted_args = 1 ) { |
514
|
|
|
$key = md5( serialize( func_get_args() ) ); |
515
|
|
|
|
516
|
|
|
if ( in_array( $key, self::$hooks_completed ) ) { |
517
|
|
|
return; |
518
|
|
|
} |
519
|
|
|
|
520
|
|
|
self::$hooks_completed[] = $key; |
521
|
|
|
add_filter( $action, $hook, $priority, $accepted_args ); |
522
|
|
|
} |
523
|
|
|
|
524
|
|
|
/** |
525
|
|
|
* Includes CMB2 styles |
526
|
|
|
* @since 2.0.0 |
527
|
|
|
*/ |
528
|
|
|
public static function enqueue_cmb_css() { |
529
|
|
|
if ( ! apply_filters( 'cmb2_enqueue_css', true ) ) { |
530
|
|
|
return false; |
531
|
|
|
} |
532
|
|
|
|
533
|
|
|
self::register_styles(); |
534
|
|
|
return wp_enqueue_style( 'cmb2-styles' ); |
535
|
|
|
} |
536
|
|
|
|
537
|
|
|
/** |
538
|
|
|
* Includes CMB2 JS |
539
|
|
|
* @since 2.0.0 |
540
|
|
|
*/ |
541
|
|
|
public static function enqueue_cmb_js() { |
542
|
|
|
if ( ! apply_filters( 'cmb2_enqueue_js', true ) ) { |
543
|
|
|
return false; |
544
|
|
|
} |
545
|
|
|
|
546
|
|
|
self::register_js(); |
547
|
|
|
return true; |
548
|
|
|
} |
549
|
|
|
|
550
|
|
|
} |
551
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.