Drupal 8.0.0 beta 12. More info: https://www.drupal.org/node/2514176
This commit is contained in:
commit
9921556621
13277 changed files with 1459781 additions and 0 deletions
39
core/modules/taxonomy/config/schema/taxonomy.schema.yml
Normal file
39
core/modules/taxonomy/config/schema/taxonomy.schema.yml
Normal file
|
@ -0,0 +1,39 @@
|
|||
# Schema for the configuration files of the Taxonomy module.
|
||||
|
||||
taxonomy.settings:
|
||||
type: config_object
|
||||
label: 'Taxonomy settings'
|
||||
mapping:
|
||||
maintain_index_table:
|
||||
type: boolean
|
||||
label: 'Maintain index table'
|
||||
override_selector:
|
||||
type: boolean
|
||||
label: 'Override selector'
|
||||
terms_per_page_admin:
|
||||
type: integer
|
||||
label: 'Number of terms per page'
|
||||
|
||||
taxonomy.vocabulary.*:
|
||||
type: config_entity
|
||||
label: 'Vocabulary'
|
||||
mapping:
|
||||
name:
|
||||
type: label
|
||||
label: 'Name'
|
||||
vid:
|
||||
type: string
|
||||
label: 'Machine name'
|
||||
description:
|
||||
type: label
|
||||
label: 'Description'
|
||||
hierarchy:
|
||||
type: integer
|
||||
label: 'Hierarchy'
|
||||
weight:
|
||||
type: integer
|
||||
label: 'Weight'
|
||||
|
||||
field.formatter.settings.entity_reference_rss_category:
|
||||
type: mapping
|
||||
label: 'Taxonomy format settings'
|
159
core/modules/taxonomy/config/schema/taxonomy.views.schema.yml
Normal file
159
core/modules/taxonomy/config/schema/taxonomy.views.schema.yml
Normal file
|
@ -0,0 +1,159 @@
|
|||
# Schema for the views plugins of the Taxonomy module.
|
||||
|
||||
views.argument.taxonomy_index_tid:
|
||||
type: views.argument.many_to_one
|
||||
label: 'Taxonomy term ID'
|
||||
|
||||
views.argument.taxonomy_index_tid_depth:
|
||||
type: views_argument
|
||||
label: 'Taxonomy term ID'
|
||||
mapping:
|
||||
depth:
|
||||
type: integer
|
||||
label: 'Depth'
|
||||
break_phrase:
|
||||
type: boolean
|
||||
label: 'Allow multiple values'
|
||||
use_taxonomy_term_path:
|
||||
type: boolean
|
||||
label: 'Use taxonomy term path'
|
||||
|
||||
views.argument.taxonomy_index_tid_depth_modifier:
|
||||
type: views_argument
|
||||
label: 'Taxonomy depth modifier'
|
||||
|
||||
views.argument.taxonomy:
|
||||
type: views_argument
|
||||
label: 'Taxonomy'
|
||||
mapping:
|
||||
break_phrase:
|
||||
type: boolean
|
||||
label: 'Allow multiple values'
|
||||
not:
|
||||
type: boolean
|
||||
label: 'Exclude'
|
||||
|
||||
views.argument.vocabulary_vid:
|
||||
type: views_argument
|
||||
label: 'Vocabulary'
|
||||
mapping:
|
||||
break_phrase:
|
||||
type: boolean
|
||||
label: 'Allow multiple values'
|
||||
not:
|
||||
type: boolean
|
||||
label: 'Exclude'
|
||||
|
||||
|
||||
views.argument_validator.entity:taxonomy_term:
|
||||
type: views.argument_validator_entity
|
||||
label: 'Taxonomy term'
|
||||
|
||||
views.argument_validator.taxonomy_term_name:
|
||||
type: views.argument_validator_entity
|
||||
label: 'Taxonomy term'
|
||||
mapping:
|
||||
vids:
|
||||
type: sequence
|
||||
label: 'Vocabularies'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Vocabulary'
|
||||
|
||||
views.argument_default.taxonomy_tid:
|
||||
type: mapping
|
||||
label: 'Taxonomy term ID from URL'
|
||||
mapping:
|
||||
term_page:
|
||||
type: string
|
||||
label: 'Load default filter from term page'
|
||||
node:
|
||||
type: boolean
|
||||
label: 'Load default filter from node page, that''s good for related taxonomy blocks'
|
||||
limit:
|
||||
type: boolean
|
||||
label: 'Limit terms by vocabulary'
|
||||
vids:
|
||||
type: sequence
|
||||
label: 'Vocabularies'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Vocabulary'
|
||||
anyall:
|
||||
type: string
|
||||
label: 'Multiple-value handling'
|
||||
|
||||
views.field.term_name:
|
||||
type: views.field.field
|
||||
mapping:
|
||||
convert_spaces:
|
||||
type: boolean
|
||||
label: 'Convert spaces in term names to hyphens'
|
||||
|
||||
views.field.taxonomy_index_tid:
|
||||
type: views_field
|
||||
label: 'Taxonomy language'
|
||||
mapping:
|
||||
type:
|
||||
type: string
|
||||
label: 'Display type'
|
||||
separator:
|
||||
type: string
|
||||
label: 'Separator'
|
||||
link_to_taxonomy:
|
||||
type: boolean
|
||||
label: 'Link this field to its term page'
|
||||
limit:
|
||||
type: boolean
|
||||
label: 'Limit terms by vocabulary'
|
||||
vids:
|
||||
type: sequence
|
||||
label: 'Vocabularies'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Vocabulary'
|
||||
|
||||
views.filter.taxonomy_index_tid:
|
||||
type: views.filter.many_to_one
|
||||
label: 'Taxonomy term ID'
|
||||
mapping:
|
||||
vid:
|
||||
type: string
|
||||
label: 'Vocabulary'
|
||||
type:
|
||||
type: string
|
||||
label: 'Selection type'
|
||||
hierarchy:
|
||||
type: boolean
|
||||
label: 'Show hierarchy in dropdown'
|
||||
limit:
|
||||
type: boolean
|
||||
label: 'Limit to vocabulary'
|
||||
error_message:
|
||||
type: boolean
|
||||
label: 'Display error message'
|
||||
value:
|
||||
type: sequence
|
||||
label: 'Values'
|
||||
sequence:
|
||||
type: integer
|
||||
label: 'Value'
|
||||
|
||||
views.filter.taxonomy_index_tid_depth:
|
||||
type: views.filter.taxonomy_index_tid
|
||||
label: 'Taxonomy term ID with depth'
|
||||
mapping:
|
||||
depth:
|
||||
type: integer
|
||||
label: 'Depth'
|
||||
|
||||
views.relationship.node_term_data:
|
||||
type: views_relationship
|
||||
label: 'Taxonomy term'
|
||||
mapping:
|
||||
vids:
|
||||
type: sequence
|
||||
label: 'Vocabularies'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Vocabulary'
|
Reference in a new issue