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
57
core/modules/aggregator/config/schema/aggregator.schema.yml
Normal file
57
core/modules/aggregator/config/schema/aggregator.schema.yml
Normal file
|
@ -0,0 +1,57 @@
|
|||
# Schema for the configuration files of the aggregator module.
|
||||
|
||||
aggregator.settings:
|
||||
type: config_object
|
||||
label: 'Aggregator settings'
|
||||
mapping:
|
||||
fetcher:
|
||||
type: string
|
||||
label: 'Fetcher'
|
||||
parser:
|
||||
type: string
|
||||
label: 'Parser'
|
||||
processors:
|
||||
type: sequence
|
||||
label: 'Processors'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Processor'
|
||||
items:
|
||||
type: mapping
|
||||
label: 'Items'
|
||||
mapping:
|
||||
allowed_html:
|
||||
type: string
|
||||
label: 'Allowed HTML tags'
|
||||
teaser_length:
|
||||
type: integer
|
||||
label: 'Length of trimmed description'
|
||||
expire:
|
||||
type: integer
|
||||
label: 'Discard items older than'
|
||||
source:
|
||||
type: mapping
|
||||
label: 'Source'
|
||||
mapping:
|
||||
list_max:
|
||||
type: integer
|
||||
label: 'Number of items shown in listing pages'
|
||||
|
||||
block.settings.aggregator_feed_block:
|
||||
type: block_settings
|
||||
label: 'Aggregator feed block'
|
||||
mapping:
|
||||
block_count:
|
||||
type: integer
|
||||
label: 'Block count'
|
||||
feed:
|
||||
type: string
|
||||
label: 'Feed'
|
||||
|
||||
field.formatter.settings.aggregator_title:
|
||||
type: mapping
|
||||
label: 'Formatter settings'
|
||||
mapping:
|
||||
display_as_link:
|
||||
type: boolean
|
||||
label: 'Display as link'
|
|
@ -0,0 +1,24 @@
|
|||
# Schema for the views plugins of the Aggregator module.
|
||||
|
||||
views.argument.aggregator_fid:
|
||||
type: views.argument.numeric
|
||||
label: 'Aggregator feed ID'
|
||||
|
||||
views.argument.aggregator_iid:
|
||||
type: views.argument.numeric
|
||||
label: 'Aggregator item ID'
|
||||
|
||||
views.field.aggregator_title_link:
|
||||
type: views_field
|
||||
label: 'Title link'
|
||||
mapping:
|
||||
display_as_link:
|
||||
type: boolean
|
||||
|
||||
views.row.aggregator_rss:
|
||||
type: views_row
|
||||
label: 'Aggregator item row'
|
||||
mapping:
|
||||
view_mode:
|
||||
type: string
|
||||
label: 'Display type'
|
Reference in a new issue