ListScreen.php
16.7 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
<?php
namespace AC;
use AC\Column\Placeholder;
use AC\Sanitize\Kses;
use AC\Type\ListScreenId;
use DateTime;
use LogicException;
use ReflectionClass;
use ReflectionException;
/**
* List Screen
* @since 2.0
*/
abstract class ListScreen {
/**
* @deprecated 4.0
*/
const OPTIONS_KEY = 'cpac_options_';
/**
* Unique Identifier for List Screen.
* @since 2.0
* @var string
*/
private $key;
/**
* @since 2.0
* @var string
*/
private $label;
/**
* @since 2.3.5
* @var string
*/
private $singular_label;
/**
* Meta type of list screen; post, user, comment. Mostly used for fetching meta data.
* @since 3.0
* @var string
*/
private $meta_type;
/**
* Page menu slug. Applies only when a menu page is used.
* @since 2.4.10
* @var string
*/
private $page;
/**
* Group slug. Used for menu.
* @var string
*/
private $group;
/**
* Name of the base PHP file (without extension).
* @see \WP_Screen::base
* @since 2.0
* @var string
*/
private $screen_base;
/**
* The unique ID of the screen.
* @see \WP_Screen::id
* @since 2.5
* @var string
*/
private $screen_id;
/**
* @since 2.0.1
* @var Column[]
*/
private $columns;
/**
* @since 2.2
* @var Column[]
*/
private $column_types;
/**
* @var string Layout ID
*/
private $layout_id;
/**
* @var string Storage key used for saving column data to the database
*/
private $storage_key;
/**
* @var array Column settings data
*/
private $settings = [];
/**
* @var array ListScreen settings data
*/
private $preferences = [];
/**
* @var bool True when column settings can not be overwritten
*/
private $read_only = false;
/**
* @var bool
*/
private $network_only = false;
/** @var string */
private $title;
/**
* @var DateTime
*/
private $updated;
/**
* @return bool
*/
public function has_id() {
return ListScreenId::is_valid_id( $this->layout_id );
}
/**
* @return ListScreenId
*/
public function get_id() {
if ( ! $this->has_id() ) {
throw new LogicException( 'ListScreen has no identity.' );
}
return new ListScreenId( $this->layout_id );
}
/**
* Contains the hook that contains the manage_value callback
* @return void
*/
abstract public function set_manage_value_callback();
/**
* Register column types
* @return void
*/
abstract protected function register_column_types();
/**
* @return string
*/
public function get_heading_hookname() {
return 'manage_' . $this->get_screen_id() . '_columns';
}
/**
* @return string
*/
public function get_key() {
return $this->key;
}
/**
* @param string $key
*
* @return self
*/
protected function set_key( $key ) {
$this->key = $key;
return $this;
}
/**
* @return string
*/
public function get_label() {
return $this->label;
}
/**
* @param string $label
*
* @return self
*/
protected function set_label( $label ) {
$this->label = $label;
return $this;
}
/**
* @return string
*/
public function get_singular_label() {
if ( null === $this->singular_label ) {
$this->set_singular_label( $this->label );
}
return $this->singular_label;
}
/**
* @param string $label
*
* @return self
*/
protected function set_singular_label( $label ) {
$this->singular_label = $label;
return $this;
}
/**
* @return string
*/
public function get_meta_type() {
return $this->meta_type;
}
/**
* @param string $meta_type
*
* @return self
*/
protected function set_meta_type( $meta_type ) {
$this->meta_type = $meta_type;
return $this;
}
/**
* @return string
*/
public function get_screen_base() {
return $this->screen_base;
}
/**
* @param string $screen_base
*
* @return self
*/
protected function set_screen_base( $screen_base ) {
$this->screen_base = $screen_base;
return $this;
}
/**
* @return string
*/
public function get_screen_id() {
return $this->screen_id;
}
/**
* @param string $screen_id
*
* @return self
*/
protected function set_screen_id( $screen_id ) {
$this->screen_id = $screen_id;
return $this;
}
/**
* @return string
*/
public function get_page() {
return $this->page;
}
/**
* @param string $page
*
* @return self
*/
protected function set_page( $page ) {
$this->page = $page;
return $this;
}
/**
* @return string
*/
public function get_group() {
return $this->group;
}
/**
* @param string $group
*
* @return self
*/
public function set_group( $group ) {
$this->group = $group;
return $this;
}
/**
* @return string
*/
public function get_title() {
return $this->title;
}
/**
* @param string $title
*
* @return $this
*/
public function set_title( $title ) {
$this->title = $title;
return $this;
}
/**
* @return string
*/
public function get_storage_key() {
if ( null === $this->storage_key ) {
$this->set_storage_key( $this->get_key() );
}
return $this->storage_key;
}
/**
* @param string $key
*/
private function set_storage_key( $key ) {
$this->storage_key = $key;
}
/**
* @return string
*/
public function get_layout_id() {
return $this->layout_id;
}
/**
* @param string $layout_id
*
* @return self
*/
public function set_layout_id( $layout_id ) {
$this->layout_id = $layout_id;
$this->set_storage_key( $this->get_key() . $layout_id );
return $this;
}
/**
* ID attribute of targeted list table
* @return string
* @since 3.0
*/
public function get_table_attr_id() {
return '#the-list';
}
/**
* @param $wp_screen
*
* @return boolean
* @since 2.0.3
*/
public function is_current_screen( $wp_screen ) {
return $wp_screen && $wp_screen->id === $this->get_screen_id() && $wp_screen->base === $this->get_screen_base();
}
/**
* Settings can not be overwritten
*/
public function is_read_only() {
return $this->read_only;
}
/**
* @param bool $read_only
*
* @return $this
*/
public function set_read_only( $read_only ) {
$this->read_only = (bool) $read_only;
return $this;
}
/**
* Settings can not be overwritten
*/
public function is_network_only() {
return $this->network_only;
}
/**
* @param bool $network_only
*/
public function set_network_only( $network_only ) {
$this->network_only = (bool) $network_only;
}
/**
* @param DateTime $updated
*
* @return $this
*/
public function set_updated( DateTime $updated ) {
$this->updated = $updated;
return $this;
}
/**
* @return DateTime
*/
public function get_updated() {
return $this->updated ?: new DateTime();
}
/**
* @return string
*/
protected function get_admin_url() {
return admin_url( $this->get_screen_base() . '.php' );
}
/**
* @return string Link
* @since 2.0
*/
public function get_screen_link() {
return add_query_arg( [
'page' => $this->get_page(),
'layout' => $this->get_layout_id(),
], $this->get_admin_url() );
}
/**
* @since 2.0
*/
public function get_edit_link() {
return add_query_arg( [
'list_screen' => $this->key,
'layout_id' => $this->get_layout_id(),
], ac_get_admin_url( 'columns' ) );
}
/**
* @return Column[]
* @since 3.0
*/
public function get_columns() {
if ( null === $this->columns ) {
$this->set_columns();
}
return $this->columns;
}
/**
* @return Column[]
*/
public function get_column_types() {
if ( null === $this->column_types ) {
$this->set_column_types();
}
return $this->column_types;
}
/**
* @param $name
*
* @return false|Column
* @since 2.0
*/
public function get_column_by_name( $name ) {
$columns = $this->get_columns();
foreach ( $columns as $column ) {
// Do not do a strict comparision. All column names are stored as strings, even integers.
if ( $column->get_name() == $name ) {
return $column;
}
}
return false;
}
/**
* @param string $type
*
* @return false|Column
*/
public function get_column_by_type( $type ) {
$column_types = $this->get_column_types();
if ( ! isset( $column_types[ $type ] ) ) {
return false;
}
return $column_types[ $type ];
}
/**
* @param string $type
*
* @return false|string
*/
public function get_class_by_type( $type ) {
$column = $this->get_column_by_type( $type );
if ( ! $column ) {
return false;
}
return get_class( $column );
}
/**
* @param string $type Column type
*/
public function deregister_column_type( $type ) {
if ( isset( $this->column_types[ $type ] ) ) {
unset( $this->column_types[ $type ] );
}
}
/**
* @param Column $column
*/
public function register_column_type( Column $column ) {
if ( ! $column->get_type() ) {
return;
}
$column->set_list_screen( $this );
if ( ! $column->is_valid() ) {
return;
}
// Skip the custom registered columns which are marked 'original' but are not available for this list screen
if ( $column->is_original() && ! array_key_exists( $column->get_type(), $this->get_original_columns() ) ) {
return;
}
$this->column_types[ $column->get_type() ] = $column;
}
/**
* @param string $type
*
* @return string Label
*/
public function get_original_label( $type ) {
$columns = $this->get_original_columns();
if ( ! isset( $columns[ $type ] ) ) {
return false;
}
return $columns[ $type ];
}
/**
* @return array
*/
public function get_original_columns() {
return ( new DefaultColumnsRepository() )->get( $this->get_key() );
}
/**
* Available column types
*/
private function set_column_types() {
$this->column_types = [];
// Register default columns
foreach ( $this->get_original_columns() as $type => $label ) {
// Ignore the mandatory checkbox column
if ( 'cb' === $type ) {
continue;
}
$column = new Column();
$column
->set_type( $type )
->set_original( true );
$this->register_column_type( $column );
}
$integrations = new IntegrationRepository();
// Placeholder columns
foreach ( $integrations->find_all() as $integration ) {
if ( ! $integration->show_placeholder( $this ) ) {
continue;
}
$plugin_info = new PluginInformation( $integration->get_basename() );
if ( $integration->is_plugin_active() && ! $plugin_info->is_active() ) {
$column = new Placeholder();
$column->set_integration( $integration );
$this->register_column_type( $column );
}
}
// Load Custom columns
$this->register_column_types();
/**
* Register column types
*
* @param ListScreen $this
*/
do_action( 'ac/column_types', $this );
}
/**
* @param string $namespace Namespace from the current path
*
* @throws ReflectionException
*/
public function register_column_types_from_dir( $namespace ) {
$classes = Autoloader::instance()->get_class_names_from_dir( $namespace );
foreach ( $classes as $class ) {
$reflection = new ReflectionClass( $class );
if ( $reflection->isInstantiable() ) {
$this->register_column_type( new $class );
}
}
}
/**
* @param string $type Column type
*
* @return bool
*/
private function is_original_column( $type ) {
$column = $this->get_column_by_type( $type );
if ( ! $column ) {
return false;
}
return $column->is_original();
}
/**
* @param string $column_name Column name
*
* @since 3.0
*/
public function deregister_column( $column_name ) {
unset( $this->columns[ $column_name ] );
}
/**
* @param array $settings Column options
*
* @return Column|false
*/
public function create_column( array $settings ) {
if ( ! isset( $settings['type'] ) ) {
return false;
}
$class = $this->get_class_by_type( $settings['type'] );
if ( ! $class ) {
return false;
}
/* @var Column $column */
$column = new $class();
$column->set_list_screen( $this )
->set_type( $settings['type'] );
if ( isset( $settings['name'] ) ) {
$column->set_name( $settings['name'] );
}
// Mark as original
if ( $this->is_original_column( $settings['type'] ) ) {
$column->set_original( true );
$column->set_name( $settings['type'] );
}
$column->set_options( $settings );
do_action( 'ac/list_screen/column_created', $column, $this );
return $column;
}
/**
* @param Column $column
*/
protected function register_column( Column $column ) {
$this->columns[ $column->get_name() ] = $column;
/**
* Fires when a column is registered to a list screen, i.e. when it is created. Can be used
* to attach additional functionality to a column, such as exporting, sorting or filtering
*
* @param Column $column Column type object
* @param ListScreen $list_screen List screen object to which the column was registered
*
* @since 3.0.5
*/
do_action( 'ac/list_screen/column_registered', $column, $this );
}
/**
* @param array $settings
*
* @return self
*/
public function set_settings( array $settings ) {
$this->settings = $settings;
return $this;
}
/**
* @since 3.0
*/
private function set_columns() {
foreach ( $this->get_settings() as $name => $data ) {
$data['name'] = $name;
$column = $this->create_column( $data );
if ( $column ) {
$this->register_column( $column );
}
}
// Nothing stored. Use WP default columns.
if ( null === $this->columns ) {
foreach ( $this->get_original_columns() as $type => $label ) {
if ( $column = $this->create_column( [ 'type' => $type, 'original' => true ] ) ) {
$this->register_column( $column );
}
}
}
if ( null === $this->columns ) {
$this->columns = [];
}
}
/**
* @return array
*/
public function get_settings() {
return $this->settings;
}
public function set_preferences( array $preferences ) {
$this->preferences = $preferences;
return $this;
}
/**
* @return array
*/
public function get_preferences() {
return $this->preferences;
}
/**
* @param string $key
*
* @return mixed|null
*/
public function get_preference( $key ) {
if ( ! isset( $this->preferences[ $key ] ) ) {
return null;
}
return $this->preferences[ $key ];
}
/**
* @param string $column_name
* @param int $id
* @param null $original_value
*
* @return string
*/
public function get_display_value_by_column_name( $column_name, $id, $original_value = null ) {
$column = $this->get_column_by_name( $column_name );
if ( ! $column ) {
return $original_value;
}
$value = ( new Kses() )->sanitize( $column->get_value( $id ) );
// You can overwrite the display value for original columns by making sure get_value() does not return an empty string.
if ( $column->is_original() && ac_helper()->string->is_empty( $value ) ) {
return $original_value;
}
/**
* Column display value
*
* @param string $value Column display value
* @param int $id Object ID
* @param Column $column Column object
*
* @since 3.0
*/
$value = apply_filters( 'ac/column/value', $value, $id, $column );
return $value;
}
/**
* @param array $columns
*
* @deprecated 4.0
*/
public function save_default_headings( $columns ) {
_deprecated_function( __METHOD__, '4.0', 'AC\DefaultColumns::update( $key, $columns )' );
( new DefaultColumnsRepository() )->update( $this->get_key(), $columns && is_array( $columns ) ? $columns : [] );
}
/**
* @return array
* @deprecated 4.0
*/
public function get_stored_default_headings() {
_deprecated_function( __METHOD__, '4.0', 'AC\DefaultColumnsRepository()::get( $key )' );
return ( new DefaultColumnsRepository() )->get( $this->get_key() );
}
/**
* @return void
*/
public function delete_default_headings() {
_deprecated_function( __METHOD__, '4.0', 'AC\DefaultColumnsRepository()::delete( $key )' );
( new DefaultColumnsRepository() )->delete( $this->get_key() );
}
/**
* @return bool
* @deprecated 4.0
*/
public function delete() {
_deprecated_function( __METHOD__, '4.0' );
return false;
}
/**
* Get default column headers
* @return array
* @deprecated 4.0
*/
public function get_default_column_headers() {
_deprecated_function( __METHOD__, '4.0' );
return [];
}
/**
* Clears columns variable, which allow it to be repopulated by get_columns().
* @deprecated 4.0
* @since 2.5
*/
public function reset() {
_deprecated_function( __METHOD__, '4.0' );
}
/**
* @deprecated 4.0
*/
public function populate_settings() {
_deprecated_function( __METHOD__, '4.0' );
}
/**
* Reset original columns
* @deprecated 4.0
*/
public function reset_original_columns() {
_deprecated_function( __METHOD__, '4.0' );
$this->original_columns = null;
}
/**
* Store column data
*
* @param array $column_data
*
* @deprecated 4.0
*/
public function store( $column_data ) {
_deprecated_function( __METHOD__, '4.0' );
}
/**
* @param array $columns
*
* @deprecated 4.3
*/
public function set_original_columns( $columns ) {
_deprecated_function( __METHOD__, '4.3' );
$this->original_columns = (array) $columns;
}
}