column.php
44.1 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
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
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
<?php
/**
* CPAC_Column class
*
* @since 2.0
*
* @param object $storage_model CPAC_Storage_Model
*/
class CPAC_Column {
/**
* A Storage Model can be a Posttype, User, Comment, Link or Media storage type.
*
* @since 2.0
* @var CPAC_Storage_Model $storage_model contains a CPAC_Storage_Model object which the column belongs too.
*/
public $storage_model;
/**
* @since 2.0
* @var array $options contains the user set options for the CPAC_Column object.
*/
public $options = array();
/**
* @since 2.0
* @var object $options_default contains the options for the CPAC_Column object before they are populated with user input.
*/
protected $options_default;
/**
* @since 2.0
* @var array $properties describes the fixed properties for the CPAC_Column object.
*/
public $properties = array();
/**
* @since 2.4.7
*/
protected $filtering_model;
/**
* @since 2.0
*
* @param int $id ID
* @return string Value
*/
public function get_value( $id ) {}
/**
* Get the raw, underlying value for the column
* Not suitable for direct display, use get_value() for that
*
* @since 2.0.3
*
* @param int $id ID
* @return mixed Value
*/
public function get_raw_value( $id ) {}
/**
* @since 2.0
*/
protected function display_settings() {}
/**
* Get the sorting value. This value will be used to sort the column.
*
* @since 2.3.2
* @param int $id Object ID
* @return string Value for sorting
*/
public function get_sorting_value( $id ) {}
/**
* Overwrite this function in child class to sanitize
* user submitted values.
*
* @since 2.0
*
* @param $options array User submitted column options
* @return array Options
*/
protected function sanitize_options( $options ) {
if ( isset( $options['date_format'] ) ) {
$options['date_format'] = trim( $options['date_format'] );
}
if ( isset( $options['width'] ) ) {
$options['width'] = trim( $options['width'] );
if ( ! is_numeric( $options['width'] ) ) {
$options['width'] = '';
}
}
return $options;
}
/**
* Overwrite this function in child class.
* Determine whether this column type should be available
*
* @since 2.2
*
* @return bool Whether the column type should be available
*/
public function apply_conditional() {
return true;
}
/**
* Overwrite this function in child class.
* Adds (optional) scripts to the listings screen.
*
* @since 2.3.4
*/
public function scripts() {}
/**
* An object copy (clone) is created for creating multiple column instances.
*
* @since 2.0
*/
public function __clone() {
// Force a copy of this->object, otherwise it will point to same object.
$this->options = clone $this->options;
$this->properties = clone $this->properties;
}
/**
* @since 2.0
*
* @param object $storage_model CPAC_Storage_Model
*/
public function __construct( CPAC_Storage_Model $storage_model ) {
$this->storage_model = $storage_model;
$this->init();
$this->after_setup();
}
/**
* @since 2.2
*/
public function init() {
// Default properties
$default_properties = array(
'clone' => null, // Unique clone ID
'type' => null, // Unique type
'name' => null, // Unique name
'label' => null, // Label which describes this column.
'classes' => null, // Custom CSS classes for this column.
'hide_label' => false, // Should the Label be hidden?
'is_registered' => true, // Should the column be registered based on conditional logic, example usage see: 'post/page-template.php'
'is_cloneable' => true, // Should the column be cloneable
'default' => false, // Is this a WP default column,
'group' => 'custom',
'hidden' => false
);
// @since 2.4.7
$default_properties = apply_filters( 'cac/column/default_properties', $default_properties );
foreach ( $default_properties as $property => $value ) {
$this->properties[ $property ] = $value;
}
// Default options
$default_options = array(
'before' => '', // Before field
'after' => '', // After field
'width' => null, // Width for this column.
'width_unit'=> '%', // Unit for width; pecentage (%) or pixels (px).
'state' => 'off' // Active state for this column.
);
/**
* Filter the default options for a column instance, such as label and width
*
* @since 2.2
* @param array $default_options Default column options
* @param CPAC_Storage_Model $storage_model Storage Model class instance
*/
$default_options = apply_filters( 'cac/column/default_options', $default_options ); // do not pass $this because object is not ready
foreach ( $default_options as $option => $value ) {
$this->options[ $option ] = $value;
}
}
/**
* After Setup
*
*/
public function after_setup() {
// Column name defaults to column type
if ( ! isset( $this->properties['name'] ) ) {
$this->properties['name'] = $this->properties['type'];
}
// Check whether the column should be available
$this->properties['is_registered'] = $this->apply_conditional();
/**
* Filter the properties of a column type, such as type and is_cloneable
* Property $column_instance added in Admin Columns 2.2
*
* @since 2.0
* @param array $properties Column properties
* @param CPAC_Storage_Model $storage_model Storage Model class instance
*/
$this->properties = apply_filters( 'cac/column/properties', $this->properties, $this ); // do not pass $this because object is not ready
/**
* Filter the properties of a column type for a specific storage model
* Property $column_instance added in Admin Columns 2.2
*
* @since 2.0
* @see Filter cac/column/properties
*/
$this->properties = apply_filters( "cac/column/properties/storage_key={$this->storage_model->key}", $this->properties, $this ); // do not pass $this because object is not ready
// Column label defaults to column type label
if ( ! isset( $this->options['label'] ) ) {
$this->options['label'] = $this->properties['label'];
}
// Convert properties and options arrays to object
$this->options = (object) $this->options;
$this->properties = (object) $this->properties;
// Read options from database
$this->populate_options();
$this->sanitize_label();
}
/**
* Populate Options
* Added $options parameter in 2.2
*
* @since 2.0
* @param array $options Optional. Options to populate the storage model with. Defaults to options from database.
*/
public function populate_options( $options = NULL ) {
$this->options = (object) array_merge( (array) $this->options, is_array( $options ) ? $options : $this->read() );
}
/**
* @param string $property
* @return mixed $value
*/
public function set_properties( $property, $value ) {
$this->properties->{$property} = $value;
return $this;
}
/**
* @param string $option
* @return mixed $value
*/
public function set_options( $option, $value ) {
$this->options->{$option} = $value;
return $this;
}
/**
* @since 2.4.7
*/
public function set_filter( $filtering_model ) {
$this->filtering_model = $filtering_model;
return $this;
}
/**
* @since 2.4.7
*/
public function get_filter() {
return $this->filtering_model;
}
/**
* @param int $id
* @return object
*/
public function set_clone( $id = null ) {
if ( $id !== null && $id > 0 ) {
$this->properties->name = "{$this->properties->type}-{$id}";
$this->properties->clone = $id;
}
return $this;
}
/**
* @since 1.0
*/
public function get_before() {
return stripslashes( $this->options->before );
}
/**
* @since 1.0
*/
public function get_after() {
return stripslashes( $this->options->after );
}
/**
* Get the type of the column.
*
* @since 2.3.4
*/
public function get_type() {
return $this->properties->type;
}
/**
* Get the name of the column.
*
* @since 2.3.4
*/
public function get_name() {
return $this->properties->name;
}
/**
* Get the column options set by the user
*
* @since 2.3.4
* @return object Column options set by user
*/
public function get_options() {
return $this->options;
}
/**
* Get a single column option
*
* @since 2.3.4
* @return array Column options set by user
*/
public function get_option( $name ) {
return isset( $this->options->{$name} ) ? $this->options->{$name} : false;
}
/**
* Checks column type
*
* @since 2.3.4
* @param string $type Column type. Also work without the 'column-' prefix. Example 'column-meta' or 'meta'.
* @return bool Matches column type
*/
public function is_type( $type ) {
return ( $type === $this->get_type() ) || ( 'column-' . $type === $this->get_type() );
}
/**
* @since 2.1.1
*/
public function get_post_type() {
return $this->storage_model->get_post_type();
}
/**
* @since 2.3.4
*/
public function get_storage_model() {
return $this->storage_model;
}
/**
* @since 2.3.4
*/
public function get_storage_model_type() {
return $this->storage_model->get_type();
}
/**
* @since 2.3.4
*/
public function get_storage_model_meta_type() {
return $this->storage_model->get_meta_type();
}
/**
* @param string $field_key
* @return void
*/
public function attr_name( $field_name ) {
echo "{$this->storage_model->key}[{$this->properties->name}][{$field_name}]";
}
/**
* @param string $field_key
* @return string Attribute Name
*/
public function get_attr_id( $field_name ) {
return "cpac-{$this->storage_model->key}-{$this->properties->name}-{$field_name}";
}
public function attr_id( $field_name ) {
echo $this->get_attr_id( $field_name );
}
/**
* @since 2.0
* @return array Column options
*/
public function read() {
$options = (array) $this->storage_model->get_database_columns();
if ( empty( $options[ $this->properties->name ] ) ) {
return array();
}
return $options[ $this->properties->name ];
}
/**
* @since 2.0
*/
public function sanitize_label() {
// check if original label has changed. Example WPML adds a language column, the column heading will have to display the added flag.
if ( $this->properties->hide_label && $this->properties->label !== $this->options->label ) {
$this->options->label = $this->properties->label;
}
// replace urls, so export will not have to deal with them
$this->options->label = stripslashes( str_replace( '[cpac_site_url]', site_url(), $this->options->label ) );
}
/**
* @since 2.0
* @param $options array User submitted column options
* @return array Options
*/
public function sanitize_storage( $options ) {
// excerpt length must be numeric, else we will return it's default
if ( isset( $options['excerpt_length'] ) ) {
$options['excerpt_length'] = trim( $options['excerpt_length'] );
if ( empty( $options['excerpt_length'] ) || ! is_numeric( $options['excerpt_length'] ) ) {
$options['excerpt_length'] = $this->options_default->excerpt_length;
}
}
if ( ! empty( $options['label'] ) ) {
// Label can not contains the character ":"" and "'", because
// CPAC_Column::get_sanitized_label() will return an empty string
// and make an exception for site_url()
if ( false === strpos( $options['label'], site_url() ) ) {
$options['label'] = str_replace( ':', '', $options['label'] );
$options['label'] = str_replace( "'", '', $options['label'] );
}
}
// used by child classes for additional sanitizing
$options = $this->sanitize_options( $options );
return $options;
}
/**
* @since 2.0
*/
public function get_label() {
/**
* Filter the column instance label
*
* @since 2.0
*
* @param string $label Column instance label
* @param CPAC_Column $column_instance Column class instance
*/
return apply_filters( 'cac/column/settings_label', stripslashes( str_replace( '[cpac_site_url]', site_url(), $this->options->label ) ), $this );
}
/**
* Sanitizes label using intern wordpress function esc_url so it matches the label sorting url.
*
* @since 1.0
* @param string $string
* @return string Sanitized string
*/
public function get_sanitized_label() {
$string = esc_url( $this->options->label );
$string = str_replace( 'http://', '', $string );
$string = str_replace( 'https://', '', $string );
return $string;
}
/**
* @since 1.3.1
*/
protected function get_shorten_url( $url = '' ) {
if ( ! $url ) {
return false;
}
return "<a title='{$url}' href='{$url}'>" . url_shorten( $url ) . "</a>";
}
/**
* @since 1.3
*/
public function strip_trim( $string ) {
return trim( strip_tags( $string ) );
}
/**
* @since 2.2.1
*/
protected function get_term_field( $field, $term_id, $taxonomy ) {
$term_field = get_term_field( $field, $term_id, $taxonomy, 'display' );
if ( is_wp_error( $term_field ) ) {
return false;
}
return $term_field;
}
/**
* @since 1.0
* @param int $post_id Post ID
* @return string Post Excerpt.
*/
protected function get_post_excerpt( $post_id, $words ) {
global $post;
$save_post = $post;
$post = get_post( $post_id );
setup_postdata( $post );
$excerpt = get_the_excerpt();
$post = $save_post;
if ( $post ) {
setup_postdata( $post );
}
$output = $this->get_shortened_string( $excerpt, $words );
return $output;
}
/**
* @see wp_trim_words();
* @since 1.0
* @return string Trimmed text.
*/
protected function get_shortened_string( $text = '', $num_words = 30, $more = null ) {
if ( ! $text ) {
return false;
}
return wp_trim_words( $text, $num_words, $more );
}
/**
* @since 1.3.1
* @param string $name
* @param string $title
* @return string HTML img element
*/
public function get_asset_image( $name = '', $title = '' ) {
if ( ! $name ) {
return false;
}
return sprintf( "<img alt='' src='%s' title='%s'/>", CPAC_URL . "assets/images/{$name}", esc_attr( $title ) );
}
/**
* @since 3.4.4
*/
public function get_user_postcount( $user_id, $post_type ) {
global $wpdb;
$sql = "
SELECT COUNT(ID)
FROM {$wpdb->posts}
WHERE post_status = 'publish'
AND post_author = %d
AND post_type = %s
";
return $wpdb->get_var( $wpdb->prepare( $sql, $user_id, $post_type ) );
}
/**
* @since 1.2.0
* @param string $url
* @return bool
*/
protected function is_image_url( $url ) {
if ( ! is_string( $url ) ) {
return false;
}
$validExt = array('.jpg', '.jpeg', '.gif', '.png', '.bmp');
$ext = strrchr( $url, '.' );
return in_array( $ext, $validExt );
}
/**
* @since 1.0
* @return array Image Sizes.
*/
public function get_all_image_sizes() {
$image_sizes = array(
'thumbnail' => __( "Thumbnail", 'codepress-admin-columns' ),
'medium' => __( "Medium", 'codepress-admin-columns' ),
'large' => __( "Large", 'codepress-admin-columns' ),
'full' => __( "Full", 'codepress-admin-columns' )
);
foreach( get_intermediate_image_sizes() as $size ) {
if ( ! isset( $image_sizes[$size] ) ) {
$image_sizes[$size] = ucwords( str_replace( '-', ' ', $size) );
}
}
return $image_sizes;
}
/**
* @since 2.2.6
*/
public function get_terms_for_display( $term_ids, $taxonomy ) {
if ( empty( $term_ids ) ) {
return false;
}
$values = array();
$term_ids = (array) $term_ids;
if ( $term_ids && ! is_wp_error( $term_ids ) ) {
$post_type = $this->get_post_type();
foreach ( $term_ids as $term_id ) {
$term = get_term( $term_id, $taxonomy );
$title = esc_html( sanitize_term_field( 'name', $term->name, $term->term_id, $term->taxonomy, 'edit' ) );
$filter_key = $term->taxonomy;
if ( 'category' === $term->taxonomy ) {
$filter_key = 'category_name';
}
$link = "<a href='edit.php?post_type={$post_type}&{$filter_key}={$term->slug}'>{$title}</a>";
if ( $post_type == 'attachment' ) {
$link = "<a href='upload.php?taxonomy={$filter_key}&term={$term->slug}'>{$title}</a>";
}
$values[] = $link;
}
}
if ( ! $values ) {
return false;
}
return implode( ', ', $values );
}
/**
* @since 2.0
* @param string $name
* @return array Image Sizes
*/
public function get_image_size_by_name( $name = '' ) {
if ( ! $name || is_array( $name ) ) {
return false;
}
global $_wp_additional_image_sizes;
if ( ! isset( $_wp_additional_image_sizes[ $name ] ) ) {
return false;
}
return $_wp_additional_image_sizes[ $name ];
}
/**
* @see image_resize()
* @since 2.0
* @return string Image URL
*/
public function image_resize( $file, $max_w, $max_h, $crop = false, $suffix = null, $dest_path = null, $jpeg_quality = 90 ) {
$resized = false;
$editor = wp_get_image_editor( $file );
if ( is_wp_error( $editor ) )
return false;
$editor->set_quality( $jpeg_quality );
$resized = $editor->resize( $max_w, $max_h, $crop );
if ( is_wp_error( $resized ) )
return false;
$dest_file = $editor->generate_filename( $suffix, $dest_path );
$saved = $editor->save( $dest_file );
if ( is_wp_error( $saved ) )
return false;
$resized = $dest_file;
return $resized;
}
/**
* @since: 2.2.6
*
*/
public function get_color_for_display( $color_hex ) {
if ( ! $color_hex ) {
return false;
}
$text_color = $this->get_text_color( $color_hex );
return "<div class='cpac-color'><span style='background-color:{$color_hex};color:{$text_color}'>{$color_hex}</span></div>";
}
/**
* Determines text color absed on bakground coloring.
*
* @since 1.0
*/
public function get_text_color( $bg_color ) {
$rgb = $this->hex2rgb( $bg_color );
return $rgb && ( ( $rgb[0]*0.299 + $rgb[1]*0.587 + $rgb[2]*0.114 ) < 186 ) ? '#ffffff' : '#333333';
}
/**
* Convert hex to rgb
*
* @since 1.0
*/
public function hex2rgb( $hex ) {
$hex = str_replace( "#", "", $hex );
if(strlen($hex) == 3) {
$r = hexdec(substr($hex,0,1).substr($hex,0,1));
$g = hexdec(substr($hex,1,1).substr($hex,1,1));
$b = hexdec(substr($hex,2,1).substr($hex,2,1));
} else {
$r = hexdec(substr($hex,0,2));
$g = hexdec(substr($hex,2,2));
$b = hexdec(substr($hex,4,2));
}
$rgb = array($r, $g, $b);
return $rgb;
}
/**
* Count the number of words in a string (multibyte-compatible)
*
* @since 2.3
*
* @param string $input Input string
* @return int Number of words
*/
public function str_count_words( $input ) {
$patterns = array(
'strip' => '/<[a-zA-Z\/][^<>]*>/',
'clean' => '/[0-9.(),;:!?%#$¿\'"_+=\\/-]+/',
'w' => '/\S\s+/',
'c' => '/\S/'
);
$type = 'w';
$input = preg_replace( $patterns['strip'], ' ', $input );
$input = preg_replace( '/ | /i', ' ', $input );
$input = preg_replace( $patterns['clean'], '', $input );
if ( ! strlen( preg_replace( '/\s/', '', $input ) ) ) {
return 0;
}
return preg_match_all( $patterns[ $type ], $input, $matches ) + 1;
}
/**
* @since 1.0
* @param mixed $meta Image files or Image ID's
* @param array $args
* @return array HTML img elements
*/
public function get_thumbnails( $images, $args = array() ) {
if ( empty( $images ) || 'false' == $images ) {
return array();
}
// turn string to array
if ( is_string( $images ) || is_numeric( $images ) ) {
if ( strpos( $images, ',' ) !== false ) {
$images = array_filter( explode( ',', $this->strip_trim( str_replace( ' ', '', $images ) ) ) );
}
else {
$images = array( $images );
}
}
// Image size
$defaults = array(
'image_size' => 'cpac-custom',
'image_size_w' => 80,
'image_size_h' => 80,
);
$args = wp_parse_args( $args, $defaults );
extract( $args );
$thumbnails = array();
foreach( $images as $value ) {
if ( $this->is_image_url( $value ) ) {
// get dimensions from image_size
if ( $sizes = $this->get_image_size_by_name( $image_size ) ) {
$image_size_w = $sizes['width'];
$image_size_h = $sizes['height'];
}
$image_path = str_replace( WP_CONTENT_URL, WP_CONTENT_DIR, $value );
if ( is_file( $image_path ) ) {
// try to resize image
if ( $resized = $this->image_resize( $image_path, $image_size_w, $image_size_h, true ) ) {
$thumbnails[] = "<img src='" . str_replace( WP_CONTENT_DIR, WP_CONTENT_URL, $resized ) . "' alt='' width='{$image_size_w}' height='{$image_size_h}' />";
}
// return full image with maxed dimensions
else {
$thumbnails[] = "<img src='{$value}' alt='' style='max-width:{$image_size_w}px;max-height:{$image_size_h}px' />";
}
}
}
// Media Attachment
elseif ( is_numeric( $value ) && wp_get_attachment_url( $value ) ) {
$src = '';
$width = '';
$height = '';
if ( ! $image_size || 'cpac-custom' == $image_size ) {
$width = $image_size_w;
$height = $image_size_h;
// to make sure wp_get_attachment_image_src() get the image with matching dimensions.
$image_size = array( $width, $height );
}
// Is Image
if ( $attributes = wp_get_attachment_image_src( $value, $image_size ) ) {
$src = $attributes[0];
$width = $attributes[1];
$height = $attributes[2];
// image size by name
if ( $sizes = $this->get_image_size_by_name( $image_size ) ) {
$width = $sizes['width'];
$height = $sizes['height'];
}
}
// Is File, use icon
elseif ( $attributes = wp_get_attachment_image_src( $value, $image_size, true ) ) {
$src = $attributes[0];
if ( $sizes = $this->get_image_size_by_name( $image_size ) ) {
$width = $sizes['width'];
$height = $sizes['height'];
}
}
// maximum dimensions
$max = max( array( $width, $height ) );
$thumbnails[] = "<span class='cpac-column-value-image' style='width:{$width}px;height:{$height}px;'><img style='max-width:{$max}px;max-height:{$max}px;' src='{$src}' alt=''/></span>";
}
}
return $thumbnails;
}
/**
* Implode for multi dimensional array
*
* @since 1.0
* @param string $glue
* @param array $pieces
* @return string Imploded array
*/
public function recursive_implode( $glue, $pieces ) {
foreach( $pieces as $r_pieces ) {
if ( is_array( $r_pieces ) ) {
$retVal[] = $this->recursive_implode( $glue, $r_pieces );
}
else {
$retVal[] = $r_pieces;
}
}
if ( isset($retVal) && is_array( $retVal ) ) {
return implode( $glue, $retVal );
}
return false;
}
/**
* Get timestamp
*
* @since 2.0
* @param string $date
* @return string Formatted date
*/
public function get_timestamp( $date ) {
if ( empty( $date ) || in_array( $date, array( '0000-00-00 00:00:00', '0000-00-00', '00:00:00' ) ) ) {
return false;
}
// some plugins store dates in a jquery timestamp format, format is in ms since The Epoch.
// See http://api.jqueryui.com/datepicker/#utility-formatDate
// credits: nmarks
if ( is_numeric( $date ) ) {
$length = strlen( trim( $date ) );
// Dates before / around September 8th, 2001 are saved as 9 numbers * 1000 resulting in 12 numbers to store the time.
// Dates after September 8th are saved as 10 numbers * 1000, resulting in 13 numbers.
// For example the ACF Date and Time Picker uses this format.
// credits: Ben C
if ( 12 === $length || 13 === $length ) {
$date = round( $date / 1000 ); // remove the ms
}
// Date format: yyyymmdd ( often used by ACF ) must start with 19xx or 20xx and is 8 long
// @todo: in theory a numeric string of 8 can also be a unixtimestamp; no conversion would be needed
if ( 8 === $length && ( strpos( $date, '20' ) === 0 || strpos( $date, '19' ) === 0 ) ) {
$date = strtotime( $date );
}
}
// Parse with strtotime if it's not numeric
else {
$date = strtotime( $date );
}
return $date;
}
/**
* @since 1.3.1
* @param string $date
* @return string Formatted date
*/
public function get_date( $date, $format = '' ) {
if ( ! $date = $this->get_timestamp( $date ) ) {
return false;
}
if ( ! $format ) {
$format = get_option( 'date_format' );
}
return date_i18n( $format, $date );
}
/**
* @since 1.3.1
* @param string $date
* @return string Formatted time
*/
protected function get_time( $date, $format = '' ) {
if ( ! $date = $this->get_timestamp( $date ) ) {
return false;
}
if ( ! $format ) {
$format = get_option( 'time_format' );
}
return date_i18n( $format, $date );
}
/**
* Get display name.
*
* Can also be used by addons.
*
* @since 2.0
*/
public function get_display_name( $user_id ) {
if ( ! $userdata = get_userdata( $user_id ) ) {
return false;
}
$name = '';
if ( ! empty( $this->options->display_author_as ) ) {
$display_as = $this->options->display_author_as;
if ( 'first_last_name' == $display_as ) {
$first = ! empty( $userdata->first_name ) ? $userdata->first_name : '';
$last = ! empty( $userdata->last_name ) ? " {$userdata->last_name}" : '';
$name = $first.$last;
}
elseif ( ! empty( $userdata->{$display_as} ) ) {
$name = $userdata->{$display_as};
}
}
// default to display_name
if ( ! $name ) {
$name = $userdata->display_name;
}
return $name;
}
/**
* @since 2.4.7
*/
public function get_filter_operator_label( $name ) {
$operators = $this->get_filter_operators();
return isset( $operators[ $name ] ) ? $operators[ $name ] : false;
}
/**
* @since 2.4.7
*/
public function get_filter_operators() {
$operators = array(
'' => __( 'Exact match', 'codepress-admin-columns' ),
'<=' => __( 'Lesser than', 'codepress-admin-columns' ),
'>=' => __( 'Greater than', 'codepress-admin-columns' ),
'between' => __( 'Between', 'codepress-admin-columns' ),
);
return $operators;
}
/**
* @since 2.0
* @param string $field_key
* @return string Attribute Name
*/
public function label_view( $label, $description = '', $pointer = '' ) {
?>
<td class="label">
<label for="<?php $this->attr_id( $pointer ); ?>">
<?php echo stripslashes( $label ); ?>
<?php if( $description ) : ?><p class="description"><?php echo $description; ?></p><?php endif; ?>
</label>
</td>
<?php
}
/**
* @since 2.0
*/
public function display_field_date_format() {
$field_key = 'date_format';
$label = __( 'Date Format', 'codepress-admin-columns' );
$description = __( 'This will determine how the date will be displayed.', 'codepress-admin-columns' );
?>
<tr class="column_<?php echo $field_key; ?>">
<?php $this->label_view( $label, $description, $field_key ); ?>
<td class="input">
<input type="text" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>" value="<?php echo $this->options->date_format; ?>" placeholder="<?php _e( 'Example:', 'codepress-admin-columns' ); ?> d M Y H:i"/>
<p class="description">
<?php printf( __( "Leave empty for WordPress date format, change your <a href='%s'>default date format here</a>." , 'codepress-admin-columns' ), admin_url( 'options-general.php' ) . '#date_format_custom_radio' ); ?>
<a target='_blank' href='http://codex.wordpress.org/Formatting_Date_and_Time'><?php _e( 'Documentation on date and time formatting.', 'codepress-admin-columns' ); ?></a>
</p>
</td>
</tr>
<?php
}
/**
* @since 2.0
*/
public function display_field_excerpt_length() {
$field_key = 'excerpt_length';
$label = __( 'Excerpt length', 'codepress-admin-columns' );
$description = __( 'Number of words', 'codepress-admin-columns' );
?>
<tr class="column_<?php echo $field_key; ?>">
<?php $this->label_view( $label, $description, $field_key ); ?>
<td class="input">
<input type="text" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>" value="<?php echo $this->options->excerpt_length; ?>"/>
</td>
</tr>
<?php
}
/**
* @since 2.0
*/
public function display_field_preview_size() {
$field_key = 'image_size';
$label = __( 'Preview size', 'codepress-admin-columns' );
?>
<tr class="column_<?php echo $field_key; ?>">
<?php $this->label_view( $label, '', $field_key ); ?>
<td class="input">
<?php foreach ( $sizes = $this->get_all_image_sizes() as $id => $image_label ) : ?>
<label for="<?php $this->attr_id( $field_key ); ?>-<?php echo $id ?>" class="custom-size">
<input type="radio" value="<?php echo $id; ?>" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-<?php echo $id ?>"<?php checked( $this->options->image_size, $id ); ?>>
<?php echo $image_label; ?>
</label>
<?php endforeach; ?>
<div class="custom_image_size">
<label for="<?php $this->attr_id( $field_key ); ?>-custom" class="custom-size image-size-custom" >
<input type="radio" value="cpac-custom" name="<?php $this->attr_name( $field_key ); ?>" id="<?php $this->attr_id( $field_key ); ?>-custom"<?php checked( $this->options->image_size, 'cpac-custom' ); ?>><?php _e( 'Custom', 'codepress-admin-columns' ); ?>
</label>
<label for="<?php $this->attr_id( $field_key ); ?>-w" class="custom-size-w<?php echo $this->options->image_size != 'cpac-custom' ? ' hidden' : ''; ?>">
<input type="text" name="<?php $this->attr_name( 'image_size_w' ); ?>" id="<?php $this->attr_id( $field_key ); ?>-w" value="<?php echo $this->options->image_size_w; ?>" /><?php _e( 'width', 'codepress-admin-columns' ); ?>
</label>
<label for="<?php $this->attr_id( $field_key ); ?>-h" class="custom-size-h<?php echo $this->options->image_size != 'cpac-custom' ? ' hidden' : ''; ?>">
<input type="text" name="<?php $this->attr_name( 'image_size_h' ); ?>" id="<?php $this->attr_id( $field_key ); ?>-h" value="<?php echo $this->options->image_size_h; ?>" /><?php _e( 'height', 'codepress-admin-columns' ); ?>
</label>
</div>
</td>
</tr>
<?php
}
/**
* @since 2.1.1
*/
public function display_field_before_after() {
$this->display_field_text( 'before', __( "Before", 'codepress-admin-columns' ), __( 'This text will appear before the custom field value.', 'codepress-admin-columns' ) );
$this->display_field_text( 'after', __( "After", 'codepress-admin-columns' ), __( 'This text will appear after the custom field value.', 'codepress-admin-columns' ) );
}
/**
* @since 2.3.2
*/
public function display_field_user_format() {
$nametypes = array(
'display_name' => __( 'Display Name', 'codepress-admin-columns' ),
'first_name' => __( 'First Name', 'codepress-admin-columns' ),
'last_name' => __( 'Last Name', 'codepress-admin-columns' ),
'nickname' => __( 'Nickname', 'codepress-admin-columns' ),
'user_login' => __( 'User Login', 'codepress-admin-columns' ),
'user_email' => __( 'User Email', 'codepress-admin-columns' ),
'ID' => __( 'User ID', 'codepress-admin-columns' ),
'first_last_name' => __( 'First and Last Name', 'codepress-admin-columns' ),
);
$this->display_field_select( 'display_author_as', __( 'Display format', 'codepress-admin-columns' ), $nametypes, __( 'This is the format of the author name.', 'codepress-admin-columns' ) );
}
/**
* @since 2.3.4
* @param string $name Name of the column option
* @param string $label Label
* @param array $options Select options
* @param strong $description (optional) Description below the label
*/
public function display_field_select( $name, $label, $options = array(), $description = '', $optional_toggle_id = '' ) {
$current = $this->get_option( $name );
$data_optional = $optional_toggle_id ? ' data-additional-option-id="' . $this->get_attr_id( $optional_toggle_id ) . '"' : '';
?>
<tr class="column-<?php echo $name; ?>" <?php echo $data_optional; ?>>
<?php $this->label_view( $label, $description, $name ); ?>
<td class="input">
<select name="<?php $this->attr_name( $name ); ?>" id="<?php $this->attr_id( $name ); ?>">
<?php foreach ( $options as $key => $label ) : ?>
<option value="<?php echo $key; ?>"<?php selected( $key, $current ); ?>><?php echo $label; ?></option>
<?php endforeach; ?>
</select>
</td>
</tr>
<?php
}
/**
* @since 2.3.4
* @param string $name Name of the column option
* @param string $label Label
* @param array $options Select options
* @param strong $description (optional) Description below the label
*/
public function display_field_text( $name, $label, $description = '' ) {
?>
<tr class="column-<?php echo $name; ?>">
<?php $this->label_view( $label, $description, $name ); ?>
<td class="input">
<input type="text" name="<?php $this->attr_name( $name ); ?>" id="<?php $this->attr_id( $name ); ?>" value="<?php echo esc_attr( stripslashes( $this->get_option( $name ) ) ); ?>"/>
</td>
</tr>
<?php
}
/**
* @since 2.4.7
*
* @param string $name Name of the column option
* @param string $label Label
* @param array $options Select options
* @param strong $description (optional) Description below the label
* @param string $optional_toggle_id (optional) Toggle ID will hide the row untill the toggle is triggered
*/
public function display_field_radio( $name, $label, $options = array(), $description = '', $optional_toggle_id = '' ) {
$current = $this->get_option( $name );
$data_optional = $optional_toggle_id ? ' data-additional-option-id="' . $this->get_attr_id( $optional_toggle_id ) . '"' : '';
?>
<tr class="column-<?php echo $name; ?>" <?php echo $data_optional; ?>>
<?php $this->label_view( $label, $description, $name ); ?>
<td class="input">
<?php foreach ( $options as $key => $label ) : ?>
<label>
<input type="radio" name="<?php $this->attr_name( $name ); ?>" id="<?php $this->attr_id( $name . '-' . $key ); ?>" value="<?php echo $key; ?>"<?php checked( $key, $current ); ?>>
<?php echo $label; ?>
</label>
<?php endforeach; ?>
</select>
</td>
</tr>
<?php
}
/**
* @since 2.0
* @param array Column Objects
* @return string HTML List
*/
public function get_column_list( $columns = array(), $label = '' ) {
if ( empty( $columns ) ) {
return false;
}
$list = '';
// sort by alphabet
$_columns = array();
foreach ( $columns as $column ) {
if ( $column->properties->hidden ) {
continue;
}
$_columns[ $column->properties->type ] = ( 0 === strlen( strip_tags( $column->properties->label ) ) ) ? ucfirst( $column->properties->type ) : $column->properties->label;
}
asort( $_columns );
$list = "<optgroup label='{$label}'>";
foreach ( $_columns as $type => $label ) {
$selected = selected( $this->properties->type, $type, false );
$list .= "<option value='{$type}'{$selected}>{$label}</option>";
}
$list .= "</optgroup>";
return $list;
}
/**
* @since 2.0
*/
public function display() {
$classes = implode( ' ', array_filter( array ( "cpac-box-{$this->properties->type}", $this->properties->classes ) ) );
// column list
$column_list = '';
$groups = $this->storage_model->get_column_type_groups();
foreach ( $groups as $group => $label ) {
$column_list .= $this->get_column_list( $this->storage_model->column_types[ $group ], $label );
}
// clone attribute
$data_clone = $this->properties->is_cloneable ? " data-clone='{$this->properties->clone}'" : '';
?>
<div class="cpac-column <?php echo $classes; ?>" data-type="<?php echo $this->properties->type; ?>"<?php echo $data_clone; ?>>
<input type="hidden" class="column-name" name="<?php echo $this->attr_name( 'column-name' ); ?>" value="<?php echo esc_attr( $this->properties->name ); ?>" />
<input type="hidden" class="type" name="<?php echo $this->attr_name( 'type' ); ?>" value="<?php echo $this->properties->type; ?>" />
<input type="hidden" class="clone" name="<?php echo $this->attr_name( 'clone' ); ?>" value="<?php echo $this->properties->clone; ?>" />
<div class="column-meta">
<table class="widefat">
<tbody>
<tr>
<td class="column_sort"></td>
<td class="column_label">
<div class="inner">
<div class="meta">
<span title="<?php echo esc_attr( __( 'width', 'codepress-admin-columns' ) ); ?>" class="width" data-indicator-id="">
<?php echo ! empty( $this->options->width ) ? $this->options->width . $this->options->width_unit : ''; ?>
</span>
<?php
/**
* Fires in the meta-element for column options, which is displayed right after the column label
*
* @since 2.0
*
* @param CPAC_Column $column_instance Column class instance
*/
do_action( 'cac/column/settings_meta', $this );
/**
* @deprecated 2.2 Use cac/column/settings_meta instead
*/
do_action( 'cac/column/label', $this );
?>
</div>
<a class="toggle" href="javascript:;"><?php echo stripslashes( $this->get_label() ); ?></a>
<a class="edit-button" href="javascript:;"><?php _e( 'Edit', 'codepress-admin-columns' ); ?></a>
<?php if ( $this->properties->is_cloneable ) : ?>
<a class="clone-button" href="#"><?php _e( 'Clone', 'codepress-admin-columns' ); ?></a>
<?php endif; ?>
<a class="remove-button" href="javascript:;"><?php _e( 'Remove', 'codepress-admin-columns' ); ?></a>
</div>
</td>
<td class="column_type">
<div class="inner">
<a href="#"><?php echo stripslashes( $this->properties->label ); ?></a>
</div>
</td>
<td class="column_edit"></td>
</tr>
</tbody>
</table>
</div><!--.column-meta-->
<div class="column-form">
<table class="widefat">
<tbody>
<tr class="column_type">
<?php $this->label_view( __( 'Type', 'codepress-admin-columns' ), __( 'Choose a column type.', 'codepress-admin-columns' ) . '<em>' . __( 'Type', 'codepress-admin-columns' ) . ': ' . $this->properties->type . '</em><em>' . __( 'Name', 'codepress-admin-columns' ) . ': ' . $this->properties->name . '</em>', 'type' ); ?>
<td class="input">
<select name="<?php $this->attr_name( 'type' ); ?>" id="<?php $this->attr_id( 'type' ); ?>">
<?php echo $column_list; ?>
</select>
<div class="msg"></div>
</td>
</tr><!--.column_label-->
<tr class="column_label<?php echo $this->properties->hide_label ? ' hidden' : ''; ?>">
<?php $this->label_view( __( 'Label', 'codepress-admin-columns' ), __( 'This is the name which will appear as the column header.', 'codepress-admin-columns' ), 'label' ); ?>
<td class="input">
<input class="text" type="text" name="<?php $this->attr_name( 'label' ); ?>" id="<?php $this->attr_id( 'label' ); ?>" value="<?php echo esc_attr( $this->options->label ); //echo sanitize_text_field( $this->options->label ); ?>" />
</td>
</tr><!--.column_label-->
<tr class="column_width">
<?php $this->label_view( __( 'Width', 'codepress-admin-columns' ), '', 'width' ); ?>
<td class="input">
<div class="description" title="<?php _e( 'default', 'codepress-admin-columns' ); ?>">
<input class="width" type="text" placeholder="<?php _e( 'auto', 'codepress-admin-columns' ); ?>" name="<?php $this->attr_name( 'width' ); ?>" id="<?php $this->attr_id( 'width' ); ?>" value="<?php echo $this->options->width; ?>" />
<span class="unit"><?php echo $this->options->width_unit; ?></span>
</div>
<div class="width-slider"></div>
<div class="unit-select">
<label for="<?php $this->attr_id( 'width_unit_px' ); ?>">
<input type="radio" class="unit" name="<?php $this->attr_name( 'width_unit' ); ?>" id="<?php $this->attr_id( 'width_unit_px' ); ?>" value="px"<?php checked( $this->options->width_unit, 'px' ); ?>/>
px
</label>
<label for="<?php $this->attr_id( 'width_unit_perc' ); ?>">
<input type="radio" class="unit" name="<?php $this->attr_name( 'width_unit' ); ?>" id="<?php $this->attr_id( 'width_unit_perc' ); ?>" value="%"<?php checked( $this->options->width_unit, '%' ); ?>/>
%
</label>
</div>
</td>
</tr><!--.column_width-->
<?php
/**
* Fires directly before the custom options for a column are displayed in the column form
*
* @since 2.0
* @param CPAC_Column $column_instance Column class instance
*/
do_action( 'cac/column/settings_before', $this );
?>
<?php
/**
* Load specific column settings.
*
*/
$this->display_settings();
?>
<?php
/**
* Fires directly after the custom options for a column are displayed in the column form
*
* @since 2.0
* @param CPAC_Column $column_instance Column class instance
*/
do_action( 'cac/column/settings_after', $this );
?>
<tr class="column_action">
<td colspan="2">
<p>
<?php if ( $this->properties->is_cloneable ) : ?>
<a class="clone-button" href="#"><?php _e( 'Clone', 'codepress-admin-columns' ); ?></a>
<?php endif; ?>
<a href="javascript:;" class="remove-button"><?php _e( 'Remove' );?></a>
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<?php
}
/**
* Display settings field for post property to display
*
* @since 2.4.7
*/
public function display_field_post_property_display() {
$this->display_field_select(
'post_property_display',
__( 'Property To Display', 'codepress-admin-columns' ),
array(
'title' => __( 'Title' ), // default
'id' => __( 'ID' ),
'author' => __( 'Author' )
),
__( 'Post property to display for related post(s).', 'codepress-admin-columns' )
);
}
/**
* Display settings field for the page the posts should link to
*
* @since 2.4.7
*/
public function display_field_post_link_to() {
$this->display_field_select(
'post_link_to',
__( 'Link To', 'codepress-admin-columns' ),
array(
'' => __( 'None' ),
'edit_post' => __( 'Edit Post' ),
'view_post' => __( 'View Post' ),
'edit_author' => __( 'Edit Post Author', 'codepress-admin-columns' ),
'view_author' => __( 'View Public Post Author Page', 'codepress-admin-columns' )
),
__( 'Page the posts should link to.', 'codepress-admin-columns' )
);
}
/**
* @since 2.4.7
*/
function display_settings_placeholder( $url ) { ?>
<div class="is-disabled">
<p>
<strong><?php printf( __( "The %s column is only available in Admin Columns Pro - Business or Developer.", 'codepress-admin-columns' ), $this->get_label() ); ?></strong>
</p>
<p>
<?php printf( __( "If you have a business or developer licence please download & install your %s add-on from the <a href='%s'>add-ons tab</a>.", 'codepress-admin-columns' ), $this->get_label(), admin_url( 'options-general.php?page=codepress-admin-columns&tab=addons' ) ); ?>
</p>
<p>
<?php printf( __( "Admin Columns Pro offers full %s integration, allowing you to easily display and edit %s fields from within your overview.", 'codepress-admin-columns' ), $this->get_label(), $this->get_label() ); ?>
</p>
<a href="<?php echo add_query_arg( array(
'utm_source' => 'plugin-installation',
'utm_medium' => $this->get_type(),
'utm_campaign' => 'plugin-installation'
), $url ); ?>" class="button button-primary"><?php _e( 'Find out more', 'codepress-admin-columns' ); ?></a>
</div>
<?php
}
}