This repository has been archived by the owner on Feb 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
taxonomy-meta.php
580 lines (486 loc) · 16.7 KB
/
taxonomy-meta.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
<?php
/*
Plugin Name: Taxonomy Meta
Plugin URI: http://www.deluxeblogtips.com/taxonomy-meta-script-for-wordpress
Description: Add meta values to terms, mimic custom post fields
Version: 1.2
Author: Rilwis
Author URI: http://www.deluxeblogtips.com
License: GPL2+
*/
class RW_Taxonomy_Meta {
protected $_meta;
protected $_taxonomies;
protected $_fields;
/**
* Store all CSS of fields
* @var string
*/
public $css = '';
/**
* Store all JS of fields
* @var string
*/
public $js = '';
function __construct( $meta ) {
if ( !is_admin() )
return;
$this->_meta = $meta;
$this->normalize();
add_action( 'admin_init', array( $this, 'add' ), 100 );
add_action( 'edit_term', array( $this, 'save' ), 10, 2 );
add_action( 'delete_term', array( $this, 'delete' ), 10, 2 );
add_action( 'load-edit-tags.php', array( $this, 'load_edit_page' ) );
}
/**
* Enqueue scripts and styles
*
* @return void
*/
function load_edit_page()
{
$screen = get_current_screen();
// Starting with WP 4.5, $screen->base returns 'term' instead of 'edit-tags' when editing a term
// Also it no longer sets the 'action' querystring var
if (
!('term' === $screen->base || ('edit-tags' === $screen->base && !empty( $_GET['action'] ) && 'edit' === $_GET['action']))
|| !in_array( $screen->taxonomy, $this->_taxonomies )
)
{
return;
}
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
add_action( 'admin_head', array( $this, 'output_css' ) );
add_action( 'admin_footer', array( $this, 'output_js' ), 100 );
}
/**
* Enqueue scripts and styles
*
* @return void
*/
function admin_enqueue_scripts()
{
wp_enqueue_script( 'jquery' );
$this->check_field_upload();
$this->check_field_date();
$this->check_field_color();
$this->check_field_time();
}
/**
* Output CSS into header
*
* @return void
*/
function output_css()
{
echo $this->css ? '<style>' . $this->css . '</style>' : '';
}
/**
* Output JS into footer
*
* @return void
*/
function output_js()
{
echo $this->js ? '<script>jQuery(function($){ var pre180Underscore = window._ && parseFloat(window._.VERSION) <= 1.7; ' . $this->js . '});</script>' : '';
}
/******************** BEGIN FIELDS **********************/
// Check field upload and add needed actions
function check_field_upload() {
if ( !$this->has_field( 'image' ) && $this->has_field( 'file' ) )
return;
$this->css .= '
.rwtm-uploaded {overflow: hidden; margin: 0 0 10px}
.rwtm-files {padding-left: 20px}
.rwtm-images li {margin: 0 10px 10px 0; float: left; width: 150px; height: 100px; text-align: center; border: 3px solid #ccc; position: relative}
.rwtm-images img {max-width: 150px; max-height: 100px}
.rwtm-images a {position: absolute; bottom: 0; right: 0; color: #fff; background: #000; font-weight: bold; padding: 5px}
';
// Add enctype
$this->js .= '
$("#edittag").attr("enctype", "multipart/form-data");
';
// Delete file
$this->js .= '
$("body").on("click", ".rwtm-delete-file", function(){
$(this).parent().remove();
return false;
});
';
// File upload
if ( $this->has_field( 'file' ) ) {
$this->js .= "
\$('body').on('click', '.rwtm-file-upload', function(){
var id = \$(this).data('field');
var template = '<# _.each(attachments, function(attachment) { #>';
template += '<li>';
template += '<a href=\"{{{ attachment.url }}}\">{{{ attachment.filename }}}</a>';
template += ' (<a class=\"rwtm-delete-file\" href=\"#\">" . __( 'Delete', 'rwtm' ) . "</a>)';
template += '<input type=\"hidden\" name=\"' + id + '[]\" value=\"{{{ attachment.id }}}\">';
template += '</li>';
template += '<# }); #>';
var \$uploaded = \$(this).siblings('.rwtm-uploaded');
var frame = wp.media({
multiple : true,
title : \"" . __( 'Select File', 'rwtm' ) . "\"
});
frame.on('select', function()
{
var selection = frame.state().get('selection').toJSON();
var data = { attachments: selection };
var settings = {
evaluate: /<#([\s\S]+?)#>/g,
interpolate: /\{\{\{([\s\S]+?)\}\}\}/g,
escape: /\{\{([^\}]+?)\}\}(?!\})/g
};
// Underscore 1.8.0 made a breaking change to the function signature of template()
if (pre180Underscore) {
\$uploaded.append(_.template(template, data, settings));
} else {
\$uploaded.append(_.template(template, settings)(data));
}
});
frame.open();
return false;
});
";
}
if ( !$this->has_field( 'image' ) )
return;
wp_enqueue_media();
// Image upload
$this->js .= "
\$('body').on('click', '.rwtm-image-upload', function(){
var id = \$(this).data('field');
var template = '<# _.each(attachments, function(attachment) { ';
// SVGs don't have a sizes property
template +=' if (attachment.sizes) {';
template +=' var imageUrl = attachment.sizes.full.url;';
template +=' } else {';
template +=' var imageUrl = attachment.url;';
template +=' }';
template +=' #>';
template += '<li>';
template += '<img src=\"{{{ imageUrl }}}\">';
template += '<a class=\"rwtm-delete-file\" href=\"#\">" . __( 'Delete', 'rwtm' ) . "</a>';
template += '<input type=\"hidden\" name=\"' + id + '[]\" value=\"{{{ attachment.id }}}\">';
template += '</li>';
template += '<# }); #>';
var \$uploaded = \$(this).siblings('.rwtm-uploaded');
var frame = wp.media({
multiple : true,
title : \"" . __( 'Select Image', 'rwtm' ) . "\",
library : {
type: 'image'
}
});
frame.on('select', function()
{
var selection = frame.state().get('selection').toJSON();
var data = { attachments: selection };
var settings = {
evaluate: /<#([\s\S]+?)#>/g,
interpolate: /\{\{\{([\s\S]+?)\}\}\}/g,
escape: /\{\{([^\}]+?)\}\}(?!\})/g
};
// Underscore 1.8.0 made a breaking change to the function signature of template()
if (pre180Underscore) {
\$uploaded.append(_.template(template, data, settings));
} else {
\$uploaded.append(_.template(template, settings)(data));
}
});
frame.open();
return false;
});
";
}
// Check field color
function check_field_color() {
if ( !$this->has_field( 'color' ) )
return;
wp_enqueue_style( 'wp-color-picker' );
wp_enqueue_script( 'wp-color-picker' );
$this->js .= '$(".color").wpColorPicker();';
}
// Check field date
function check_field_date() {
if ( !$this->has_field( 'date' ) )
return;
wp_enqueue_style( 'jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.min.css' );
wp_enqueue_script( 'jquery-ui-datepicker' );
// CSS
$this->css .= '#ui-datepicker-div {display: none}';
// JS
$dates = array();
foreach ( $this->_fields as $field ) {
if ( 'date' == $field['type'] ) {
$dates[$field['id']] = $field['format'];
}
}
foreach ( $dates as $id => $format ) {
$this->js .= "$('#$id').datepicker({
dateFormat: '$format',
showButtonPanel: true
});";
}
}
// Check field time
function check_field_time() {
if ( !$this->has_field( 'time' ) )
return;
wp_enqueue_style( 'jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.min.css' );
wp_enqueue_style( 'jquery-ui-timepicker', 'http://cdn.jsdelivr.net/jquery.ui.timepicker.addon/1.3/jquery-ui-timepicker-addon.css' );
wp_enqueue_script( 'jquery-ui-timepicker', 'http://cdn.jsdelivr.net/jquery.ui.timepicker.addon/1.3/jquery-ui-timepicker-addon.min.js', array( 'jquery-ui-datepicker', 'jquery-ui-slider' ) );
// CSS
$this->css .= '#ui-datepicker-div {display: none}';
// JS
$times = array();
foreach ( $this->_fields as $field ) {
if ( 'time' == $field['type'] ) {
$times[$field['id']] = $field['format'];
}
}
foreach ( $times as $id => $format ) {
$this->js .= "$('#$id').timepicker({showSecond: true, timeFormat: '$format'})";
}
}
/******************** BEGIN META BOX PAGE **********************/
// Add meta fields for taxonomies
function add() {
//foreach (get_taxonomies(array('show_ui' => true)) as $tax_name) {
foreach ( get_taxonomies() as $tax_name ) {
if ( in_array( $tax_name, $this->_taxonomies ) ) {
add_action( $tax_name . '_edit_form', array( $this, 'show' ), 9, 2 );
}
}
}
// Show meta fields
function show( $tag, $taxonomy ) {
// get meta fields from option table
$metas = get_option( $this->_meta['id'] );
if ( empty( $metas ) ) $metas = array();
if ( !is_array( $metas ) ) $metas = (array) $metas;
// get meta fields for current term
$metas = isset( $metas[$tag->term_id] ) ? $metas[$tag->term_id] : array();
wp_nonce_field( basename( __FILE__ ), 'rw_taxonomy_meta_nonce' );
echo "<h3>{$this->_meta['title']}</h3>
<table class='form-table'>";
foreach ( $this->_fields as $field ) {
echo '<tr>';
$meta = !empty( $metas[$field['id']] ) ? $metas[$field['id']] : $field['std']; // get meta value for current field
$meta = is_array( $meta ) ? array_map( 'esc_attr', $meta ) : esc_attr( $meta );
call_user_func( array( $this, 'show_field_' . $field['type'] ), $field, $meta );
echo '</tr>';
}
echo '</table>';
}
/******************** BEGIN META BOX FIELDS **********************/
function show_field_begin( $field, $meta ) {
echo "<th scope='row' valign='top'><label for='{$field['id']}'>{$field['name']}</label></th><td>";
}
function show_field_end( $field, $meta ) {
echo $field['desc'] ? "<br><span class='description'>{$field['desc']}</span></td>" : '</td>';
}
function show_field_text( $field, $meta ) {
$this->show_field_begin( $field, $meta );
echo "<input type='text' name='{$field['id']}' id='{$field['id']}' value='$meta' style='{$field['style']}'>";
$this->show_field_end( $field, $meta );
}
function show_field_textarea( $field, $meta ) {
$this->show_field_begin( $field, $meta );
echo "<textarea name='{$field['id']}' cols='60' rows='15' style='{$field['style']}'>$meta</textarea>";
$this->show_field_end( $field, $meta );
}
function show_field_select( $field, $meta ) {
if ( !is_array( $meta ) ) $meta = (array) $meta;
$this->show_field_begin( $field, $meta );
echo "<select style='{$field['style']}' name='{$field['id']}" . ( $field['multiple'] ? "[]' multiple='multiple'" : "'" ) . ">";
foreach ( $field['options'] as $key => $value ) {
if ( $field['optgroups'] && is_array( $value ) ) {
echo "<optgroup label=\"{$value['label']}\">";
foreach ( $value['options'] as $option_key => $option_value ) {
echo "<option value='$option_key'" . selected( in_array( $option_key, $meta ), true, false ) . ">$option_value</option>";
}
echo '</optgroup>';
} else {
echo "<option value='$key'" . selected( in_array( $key, $meta ), true, false ) . ">$value</option>";
}
}
echo "</select>";
$this->show_field_end( $field, $meta );
}
function show_field_radio( $field, $meta ) {
$this->show_field_begin( $field, $meta );
$html = array();
foreach ( $field['options'] as $key => $value ) {
$html[] .= "<label><input type='radio' name='{$field['id']}' value='$key'" . checked( $meta, $key, false ) . "> $value</label>";
}
echo implode( ' ', $html );
$this->show_field_end( $field, $meta );
}
function show_field_checkbox( $field, $meta ) {
$this->show_field_begin( $field, $meta );
echo "<label><input type='checkbox' name='{$field['id']}' value='1'" . checked( !empty( $meta ), true, false ) . "></label>";
$this->show_field_end( $field, $meta );
}
function show_field_wysiwyg( $field, $meta ) {
$this->show_field_begin( $field, $meta );
wp_editor( $meta, $field['id'], array(
'textarea_name' => $field['id'],
'editor_class' => $field['id'].' theEditor',
) );
$this->show_field_end( $field, $meta );
}
function show_field_file( $field, $meta ) {
if ( !is_array( $meta ) )
$meta = (array) $meta;
$this->show_field_begin( $field, $meta );
if ( $field['desc'] )
echo "{$field['desc']}<br>";
echo '<ol class="rwtm-files rwtm-uploaded">';
foreach ( $meta as $att ) {
printf( '
<li>
%s (<a class="rwtm-delete-file" href="#">%s</a>)
<input type="hidden" name="%s[]" value="%s">
</li>',
wp_get_attachment_link( $att ),
__( 'Delete', 'rwtm' ),
$field['id'],
$att
);
}
echo '</ol>';
echo "<a href='#' class='rwtm-file-upload button' data-field='{$field['id']}'>" . __( 'Select File', 'rwtm' ) . "</a>";
echo '</td>';
}
function show_field_image( $field, $meta ) {
if ( !is_array( $meta ) )
$meta = (array) $meta;
$this->show_field_begin( $field, $meta );
if ( $field['desc'] )
echo "{$field['desc']}<br>";
echo '<ul class="rwtm-uploaded rwtm-images">';
foreach ( $meta as $att ) {
$image = wp_get_attachment_image_src( $att, array( 150, 150 ) );
if ( $image === false ) {
continue;
}
printf( '
<li>
<img src="%s" width="150" height="150"> <a class="rwtm-delete-file" href="#">%s</a>
<input type="hidden" name="%s[]" value="%s">
</li>',
$image[0],
__( 'Delete', 'rwtm' ),
$field['id'],
$att
);
}
echo '</ul>';
echo "<a href='#' class='rwtm-image-upload button' data-field='{$field['id']}'>" . __( 'Select Image', 'rwtm' ) . "</a>";
echo '</td>';
}
function show_field_color( $field, $meta ) {
if ( empty( $meta ) ) $meta = '#';
$this->show_field_begin( $field, $meta );
echo "<input type='text' name='{$field['id']}' id='{$field['id']}' value='$meta' class='color'>";
$this->show_field_end( $field, $meta );
}
function show_field_checkbox_list( $field, $meta ) {
if ( !is_array( $meta ) ) $meta = (array) $meta;
$this->show_field_begin( $field, $meta );
$html = array();
foreach ( $field['options'] as $key => $value ) {
$html[] = "<input type='checkbox' name='{$field['id']}[]' value='$key'" . checked( in_array( $key, $meta ), true, false ) . "> $value";
}
echo implode( '<br>', $html );
$this->show_field_end( $field, $meta );
}
function show_field_date( $field, $meta ) {
$this->show_field_text( $field, $meta );
}
function show_field_time( $field, $meta ) {
$this->show_field_text( $field, $meta );
}
/******************** BEGIN META BOX SAVE **********************/
// Save meta fields
function save( $term_id, $tt_id ) {
$metas = get_option( $this->_meta['id'] );
if ( !is_array( $metas ) )
$metas = (array) $metas;
$meta = isset( $metas[$term_id] ) ? $metas[$term_id] : array();
foreach ( $this->_fields as $field ) {
$name = $field['id'];
$new = isset( $_POST[$name] ) ? $_POST[$name] : ( $field['multiple'] ? array() : '' );
$new = is_array( $new ) ? array_map( 'stripslashes', $new ) : stripslashes( $new );
if ( empty( $new ) ) {
unset( $meta[$name] );
} else {
$meta[$name] = $new;
}
}
$metas[$term_id] = $meta;
update_option( $this->_meta['id'], $metas );
}
/******************** BEGIN META BOX DELETE **********************/
function delete( $term_id, $tt_id ) {
$metas = get_option( $this->_meta['id'] );
if ( !is_array( $metas ) ) $metas = (array) $metas;
unset( $metas[$term_id] );
update_option( $this->_meta['id'], $metas );
}
/******************** BEGIN HELPER FUNCTIONS **********************/
// Add missed values for meta box
function normalize() {
// Default values for meta box
$this->_meta = array_merge( array(
'taxonomies' => array( 'category', 'post_tag' )
), $this->_meta );
$this->_taxonomies = $this->_meta['taxonomies'];
$this->_fields = $this->_meta['fields'];
// Default values for fields
foreach ( $this->_fields as & $field ) {
$multiple = in_array( $field['type'], array( 'checkbox_list', 'file', 'image' ) ) ? true : false;
$std = $multiple ? array() : '';
$format = 'date' == $field['type'] ? 'yy-mm-dd' : ( 'time' == $field['type'] ? 'hh:mm' : '' );
$style = in_array( $field['type'], array( 'text', 'textarea' ) ) ? 'width: 95%' : '';
$optgroups = false;
if ( 'select' == $field['type'] )
$style = 'height: auto';
$field = array_merge( array(
'multiple' => $multiple,
'optgroups' => $optgroups,
'std' => $std,
'desc' => '',
'format' => $format,
'style' => $style,
), $field );
}
}
// Check if field with $type exists
function has_field( $type ) {
foreach ( $this->_fields as $field ) {
if ( $type == $field['type'] ) return true;
}
return false;
}
/**
* Fixes the odd indexing of multiple file uploads from the format:
* $_FILES['field']['key']['index']
* To the more standard and appropriate:
* $_FILES['field']['index']['key']
*/
function fix_file_array( $files ) {
$output = array();
foreach ( $files as $key => $list ) {
foreach ( $list as $index => $value ) {
$output[$index][$key] = $value;
}
}
$files = $output;
return $output;
}
/******************** END HELPER FUNCTIONS **********************/
}