-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathviews.view.newspaper.yml
1323 lines (1323 loc) · 37.1 KB
/
views.view.newspaper.yml
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
langcode: en
status: true
dependencies:
config:
- field.storage.node.field_edtf_date_issued
- node.type.islandora_object
- taxonomy.vocabulary.islandora_models
- taxonomy.vocabulary.resource_types
module:
- islandora_install_profile_demo_core
- controlled_access_terms
- node
- taxonomy
- user
id: newspaper
label: Newspaper
module: views
description: ''
tag: ''
base_table: node_field_data
base_field: nid
display:
default:
display_plugin: default
id: default
display_title: Master
position: 0
display_options:
access:
type: perm
options:
perm: 'access content'
cache:
type: tag
options: { }
query:
type: views_query
options:
disable_sql_rewrite: false
distinct: false
replica: false
query_comment: ''
query_tags: { }
exposed_form:
type: basic
options:
submit_button: Apply
reset_button: false
reset_button_label: Reset
exposed_sorts_label: 'Sort by'
expose_sort_order: true
sort_asc_label: Asc
sort_desc_label: Desc
pager:
type: mini
options:
items_per_page: 10
offset: 0
id: 0
total_pages: null
expose:
items_per_page: false
items_per_page_label: 'Items per page'
items_per_page_options: '5, 10, 25, 50'
items_per_page_options_all: false
items_per_page_options_all_label: '- All -'
offset: false
offset_label: Offset
tags:
previous: ‹‹
next: ››
style:
type: carapace_details
options:
grouping:
-
field: field_edtf_date_issued
rendered: true
rendered_strip: true
-
field: field_edtf_date_issued_1
rendered: true
rendered_strip: true
row_class: row-class-1
default_row_class: true
collapsed: 0
open_first: 1
title: ''
description: field_edtf_date_issued_1
row:
type: fields
options:
inline: { }
separator: ''
hide_empty: false
default_field_elements: true
fields:
nid:
id: nid
table: node_field_data
field: nid
relationship: none
group_type: group
admin_label: ''
label: ''
exclude: true
alter:
alter_text: false
text: ''
make_link: false
path: ''
absolute: false
external: false
replace_spaces: false
path_case: none
trim_whitespace: false
alt: ''
rel: ''
link_class: ''
prefix: ''
suffix: ''
target: ''
nl2br: false
max_length: 0
word_boundary: true
ellipsis: true
more_link: false
more_link_text: ''
more_link_path: ''
strip_tags: false
trim: false
preserve_tags: ''
html: false
element_type: ''
element_class: ''
element_label_type: ''
element_label_class: ''
element_label_colon: false
element_wrapper_type: ''
element_wrapper_class: ''
element_default_classes: true
empty: ''
hide_empty: false
empty_zero: false
hide_alter_empty: true
click_sort_column: value
type: number_unformatted
settings: { }
group_column: value
group_columns: { }
group_rows: true
delta_limit: 0
delta_offset: 0
delta_reversed: false
delta_first_last: false
multi_type: separator
separator: ', '
field_api_classes: false
entity_type: node
entity_field: nid
plugin_id: field
field_edtf_date_issued:
id: field_edtf_date_issued
table: node__field_edtf_date_issued
field: field_edtf_date_issued
relationship: none
group_type: group
admin_label: 'Date Issued: Year'
label: ''
exclude: true
alter:
alter_text: false
text: ''
make_link: false
path: '/node/{{ nid }}'
absolute: true
external: false
replace_spaces: false
path_case: none
trim_whitespace: false
alt: ''
rel: ''
link_class: ''
prefix: ''
suffix: ''
target: ''
nl2br: false
max_length: 0
word_boundary: true
ellipsis: true
more_link: false
more_link_text: ''
more_link_path: ''
strip_tags: false
trim: false
preserve_tags: ''
html: false
element_type: ''
element_class: ''
element_label_type: ''
element_label_class: ''
element_label_colon: false
element_wrapper_type: ''
element_wrapper_class: ''
element_default_classes: true
empty: ''
hide_empty: false
empty_zero: false
hide_alter_empty: true
click_sort_column: value
type: carapace_edtf_default
settings:
relationship: none
fieldsets:
- more
- admin_label
custom_label: 0
label: ''
element_label_colon: 0
exclude: 1
element_type_enable: 0
element_type: ''
element_class_enable: 0
element_class: ''
element_label_type_enable: 0
element_label_type: ''
element_label_class_enable: 0
element_label_class: ''
element_wrapper_type_enable: 0
element_wrapper_type: ''
element_wrapper_class_enable: 0
element_wrapper_class: ''
element_default_classes: 1
alter:
alter_text: 0
text: ''
make_link: 1
path: '/node/{{ nid }}'
absolute: 1
replace_spaces: 0
external: 0
path_case: none
link_class: ''
alt: ''
rel: ''
prefix: ''
suffix: ''
target: ''
trim: 0
max_length: '0'
word_boundary: 1
ellipsis: 1
more_link: 0
more_link_text: ''
more_link_path: ''
html: 0
strip_tags: 0
preserve_tags: ''
trim_whitespace: 0
nl2br: 0
empty: ''
empty_zero: 0
hide_empty: 0
hide_alter_empty: 1
group_rows: 1
multi_type: separator
separator: ', '
delta_limit: '0'
delta_offset: '0'
delta_reversed: 0
delta_first_last: 0
click_sort_column: value
type: carapace_edtf_default
field_api_classes: 0
date_separator: space
date_order: big_endian
month_format: nm
day_format: nd
year_format: 'y'
group_column: value
group_columns: { }
group_rows: true
delta_limit: 0
delta_offset: 0
delta_reversed: false
delta_first_last: false
multi_type: separator
separator: ', '
field_api_classes: false
plugin_id: field
field_edtf_date_issued_1:
id: field_edtf_date_issued_1
table: node__field_edtf_date_issued
field: field_edtf_date_issued
relationship: none
group_type: group
admin_label: 'Date Issued: Month'
label: ''
exclude: true
alter:
alter_text: false
text: ''
make_link: false
path: ''
absolute: false
external: false
replace_spaces: false
path_case: none
trim_whitespace: false
alt: ''
rel: ''
link_class: ''
prefix: ''
suffix: ''
target: ''
nl2br: false
max_length: 0
word_boundary: true
ellipsis: true
more_link: false
more_link_text: ''
more_link_path: ''
strip_tags: false
trim: false
preserve_tags: ''
html: false
element_type: ''
element_class: ''
element_label_type: ''
element_label_class: ''
element_label_colon: false
element_wrapper_type: ''
element_wrapper_class: ''
element_default_classes: true
empty: ''
hide_empty: false
empty_zero: false
hide_alter_empty: true
click_sort_column: value
type: carapace_edtf_default
settings:
relationship: none
fieldsets:
- more
- admin_label
custom_label: 0
label: ''
element_label_colon: 0
exclude: 1
element_type_enable: 0
element_type: ''
element_class_enable: 0
element_class: ''
element_label_type_enable: 0
element_label_type: ''
element_label_class_enable: 0
element_label_class: ''
element_wrapper_type_enable: 0
element_wrapper_type: ''
element_wrapper_class_enable: 0
element_wrapper_class: ''
element_default_classes: 1
alter:
alter_text: 0
text: ''
make_link: 0
path: ''
absolute: 0
replace_spaces: 0
external: 0
path_case: none
link_class: ''
alt: ''
rel: ''
prefix: ''
suffix: ''
target: ''
trim: 0
max_length: '0'
word_boundary: 1
ellipsis: 1
more_link: 0
more_link_text: ''
more_link_path: ''
html: 0
strip_tags: 0
preserve_tags: ''
trim_whitespace: 0
nl2br: 0
empty: ''
empty_zero: 0
hide_empty: 0
hide_alter_empty: 1
group_rows: 1
multi_type: separator
separator: ', '
delta_limit: '0'
delta_offset: '0'
delta_reversed: 0
delta_first_last: 0
click_sort_column: value
type: carapace_edtf_default
field_api_classes: 0
date_separator: space
date_order: big_endian
month_format: mmmm
day_format: nd
year_format: ny
group_column: value
group_columns: { }
group_rows: true
delta_limit: 0
delta_offset: 0
delta_reversed: false
delta_first_last: false
multi_type: separator
separator: ', '
field_api_classes: false
plugin_id: field
field_edtf_date_issued_2:
id: field_edtf_date_issued_2
table: node__field_edtf_date_issued
field: field_edtf_date_issued
relationship: none
group_type: group
admin_label: 'Date Issued: Full Date'
label: ''
exclude: false
alter:
alter_text: false
text: ''
make_link: true
path: '/node/{{ nid }}'
absolute: true
external: false
replace_spaces: false
path_case: none
trim_whitespace: false
alt: ''
rel: ''
link_class: ''
prefix: ''
suffix: ''
target: ''
nl2br: false
max_length: 0
word_boundary: true
ellipsis: true
more_link: false
more_link_text: ''
more_link_path: ''
strip_tags: false
trim: false
preserve_tags: ''
html: false
element_type: ''
element_class: ''
element_label_type: ''
element_label_class: ''
element_label_colon: false
element_wrapper_type: ''
element_wrapper_class: ''
element_default_classes: true
empty: ''
hide_empty: false
empty_zero: false
hide_alter_empty: true
click_sort_column: value
type: carapace_edtf_default
settings:
relationship: none
fieldsets:
- more
- admin_label
custom_label: 0
label: ''
element_label_colon: 0
exclude: 0
element_type_enable: 0
element_type: ''
element_class_enable: 0
element_class: ''
element_label_type_enable: 0
element_label_type: ''
element_label_class_enable: 0
element_label_class: ''
element_wrapper_type_enable: 0
element_wrapper_type: ''
element_wrapper_class_enable: 0
element_wrapper_class: ''
element_default_classes: 1
alter:
alter_text: 0
text: ''
make_link: 1
path: '/node/{{ nid }}'
absolute: 1
replace_spaces: 0
external: 0
path_case: none
link_class: ''
alt: ''
rel: ''
prefix: ''
suffix: ''
target: ''
trim: 0
max_length: '0'
word_boundary: 1
ellipsis: 1
more_link: 0
more_link_text: ''
more_link_path: ''
html: 0
strip_tags: 0
preserve_tags: ''
trim_whitespace: 0
nl2br: 0
empty: ''
empty_zero: 0
hide_empty: 0
hide_alter_empty: 1
group_rows: 1
multi_type: separator
separator: ', '
delta_limit: '0'
delta_offset: '0'
delta_reversed: 0
delta_first_last: 0
click_sort_column: value
type: carapace_edtf_default
field_api_classes: 0
date_separator: space
date_order: middle_endian
month_format: mmmm
day_format: dd
year_format: 'y'
group_column: value
group_columns: { }
group_rows: true
delta_limit: 0
delta_offset: 0
delta_reversed: false
delta_first_last: false
multi_type: separator
separator: ', '
field_api_classes: false
plugin_id: field
filters:
status:
value: '1'
table: node_field_data
field: status
plugin_id: boolean
entity_type: node
entity_field: status
id: status
expose:
operator: ''
operator_limit_selection: false
operator_list: { }
group: 1
type:
id: type
table: node_field_data
field: type
value:
islandora_object: islandora_object
entity_type: node
entity_field: type
plugin_id: bundle
expose:
operator_limit_selection: false
operator_list: { }
field_resource_type_target_id:
id: field_resource_type_target_id
table: node__field_resource_type
field: field_resource_type_target_id
relationship: none
group_type: group
admin_label: ''
operator: or
value:
146: 146
group: 1
exposed: false
expose:
operator_id: ''
label: ''
description: ''
use_operator: false
operator: ''
operator_limit_selection: false
operator_list: { }
identifier: ''
required: false
remember: false
multiple: false
remember_roles:
authenticated: authenticated
reduce: false
is_grouped: false
group_info:
label: ''
description: ''
identifier: ''
optional: true
widget: select
multiple: false
remember: false
default_group: All
default_group_multiple: { }
group_items: { }
reduce_duplicates: false
type: select
limit: true
vid: resource_types
hierarchy: false
error_message: true
plugin_id: taxonomy_index_tid
field_model_target_id:
id: field_model_target_id
table: node__field_model
field: field_model_target_id
relationship: none
group_type: group
admin_label: ''
operator: or
value:
- 113
group: 1
exposed: false
expose:
operator_id: ''
label: ''
description: ''
use_operator: false
operator: ''
operator_limit_selection: false
operator_list: { }
identifier: ''
required: false
remember: false
multiple: false
remember_roles:
authenticated: authenticated
reduce: false
is_grouped: false
group_info:
label: ''
description: ''
identifier: ''
optional: true
widget: select
multiple: false
remember: false
default_group: All
default_group_multiple: { }
group_items: { }
reduce_duplicates: false
type: textfield
limit: true
vid: islandora_models
hierarchy: false
error_message: true
plugin_id: taxonomy_index_tid
sorts:
created:
id: created
table: node_field_data
field: created
order: DESC
entity_type: node
entity_field: created
plugin_id: date
relationship: none
group_type: group
admin_label: ''
exposed: false
expose:
label: ''
granularity: second
header: { }
footer: { }
empty: { }
relationships:
field_model:
id: field_model
table: node__field_model
field: field_model
relationship: none
group_type: group
admin_label: 'field_model: Taxonomy term'
required: true
plugin_id: standard
field_resource_type:
id: field_resource_type
table: node__field_resource_type
field: field_resource_type
relationship: none
group_type: group
admin_label: 'field_resource_type: Taxonomy term'
required: true
plugin_id: standard
arguments:
field_member_of_target_id:
id: field_member_of_target_id
table: node__field_member_of
field: field_member_of_target_id
relationship: none
group_type: group
admin_label: ''
default_action: default
exception:
value: all
title_enable: false
title: All
title_enable: false
title: ''
default_argument_type: node
default_argument_options: { }
default_argument_skip_url: false
summary_options:
base_path: ''
count: true
items_per_page: 25
override: false
summary:
sort_order: asc
number_of_records: 0
format: default_summary
specify_validation: true
validate:
type: 'entity:node'
fail: 'not found'
validate_options:
bundles:
islandora_object: islandora_object
operation: view
multiple: 0
access: false
break_phrase: false
not: false
plugin_id: numeric
display_extenders: { }
group_by: true
cache_metadata:
max-age: -1
contexts:
- 'languages:language_content'
- 'languages:language_interface'
- url
- url.query_args
- user
- 'user.node_grants:view'
- user.permissions
tags:
- 'config:field.storage.node.field_edtf_date_issued'
block_1:
display_plugin: block
id: block_1
display_title: Block
position: 2
display_options:
display_extenders: { }
defaults:
fields: true
filters: false
filter_groups: false
filters:
status:
value: '1'
table: node_field_data
field: status
plugin_id: boolean
entity_type: node
entity_field: status
id: status
expose:
operator: ''
operator_limit_selection: false
operator_list: { }
group: 1
type:
id: type
table: node_field_data
field: type
value:
islandora_object: islandora_object
entity_type: node
entity_field: type
plugin_id: bundle
expose:
operator_limit_selection: false
operator_list: { }
group: 1
field_external_uri_uri_2:
id: field_external_uri_uri_2
table: taxonomy_term__field_external_uri
field: field_external_uri_uri
relationship: field_resource_type
group_type: group
admin_label: ''
operator: '='
value: 'http://purl.org/dc/dcmitype/Collection'
group: 1
exposed: false
expose:
operator_id: ''
label: ''
description: ''
use_operator: false
operator: ''
operator_limit_selection: false
operator_list: { }
identifier: ''
required: false
remember: false
multiple: false
remember_roles:
authenticated: authenticated
placeholder: ''
is_grouped: false
group_info:
label: ''
description: ''
identifier: ''
optional: true
widget: select
multiple: false
remember: false
default_group: All
default_group_multiple: { }
group_items: { }
plugin_id: string
filter_groups:
operator: AND
groups:
1: AND
cache_metadata:
max-age: -1
contexts:
- 'languages:language_content'
- 'languages:language_interface'
- url
- url.query_args
- 'user.node_grants:view'
- user.permissions
tags:
- 'config:field.storage.node.field_edtf_date_issued'
newsletter_block:
display_plugin: page
id: newsletter_block
display_title: Page
position: 1
display_options:
display_extenders: { }
path: newspaper
fields:
nid:
id: nid
table: node_field_data
field: nid
relationship: none
group_type: group
admin_label: ''
label: ''
exclude: true
alter:
alter_text: false
text: ''
make_link: false
path: ''
absolute: false
external: false
replace_spaces: false
path_case: none
trim_whitespace: false
alt: ''
rel: ''
link_class: ''
prefix: ''
suffix: ''
target: ''
nl2br: false
max_length: 0
word_boundary: true
ellipsis: true
more_link: false
more_link_text: ''
more_link_path: ''
strip_tags: false
trim: false
preserve_tags: ''
html: false
element_type: ''
element_class: ''
element_label_type: ''
element_label_class: ''
element_label_colon: false
element_wrapper_type: ''
element_wrapper_class: ''
element_default_classes: true
empty: ''
hide_empty: false
empty_zero: false
hide_alter_empty: true
click_sort_column: value
type: number_unformatted
settings: { }
group_column: value
group_columns: { }
group_rows: true
delta_limit: 0
delta_offset: 0
delta_reversed: false
delta_first_last: false
multi_type: separator
separator: ', '
field_api_classes: false
entity_type: node
entity_field: nid
plugin_id: field
field_edtf_date_issued:
id: field_edtf_date_issued
table: node__field_edtf_date_issued
field: field_edtf_date_issued
relationship: none
group_type: group
admin_label: 'Date Issued: Year'
label: ''
exclude: true
alter:
alter_text: false
text: ''
make_link: false
path: '/node/{{ nid }}'
absolute: true
external: false
replace_spaces: false
path_case: none
trim_whitespace: false
alt: ''
rel: ''
link_class: ''
prefix: ''
suffix: ''
target: ''
nl2br: false
max_length: 0
word_boundary: true
ellipsis: true
more_link: false
more_link_text: ''
more_link_path: ''
strip_tags: false
trim: false
preserve_tags: ''
html: false
element_type: ''
element_class: ''
element_label_type: ''
element_label_class: ''
element_label_colon: false
element_wrapper_type: ''
element_wrapper_class: ''
element_default_classes: true
empty: ''
hide_empty: false
empty_zero: false
hide_alter_empty: true
click_sort_column: value
type: carapace_edtf_default
settings:
relationship: none
fieldsets:
- more
- admin_label
custom_label: 0
label: ''
element_label_colon: 0
exclude: 1
element_type_enable: 0
element_type: ''
element_class_enable: 0
element_class: ''
element_label_type_enable: 0
element_label_type: ''
element_label_class_enable: 0
element_label_class: ''
element_wrapper_type_enable: 0
element_wrapper_type: ''
element_wrapper_class_enable: 0
element_wrapper_class: ''
element_default_classes: 1
alter:
alter_text: 0
text: ''
make_link: 1
path: '/node/{{ nid }}'