Version 1
[yaffs-website] / web / core / modules / views / config / schema / views.argument_validator.schema.yml
1 # Schema for the views argument validators.
2
3 views.argument_validator.none:
4   type: sequence
5   label: 'Basic validation'
6   sequence:
7     type: string
8
9 views.argument_validator.php:
10   type: mapping
11   label: 'PHP Code'
12   mapping:
13     code:
14       type: string
15       label: 'PHP validate code'
16
17 views.argument_validator.*:
18   type: mapping
19   label: 'Default argument validator'
20
21 views.argument_validator_entity:
22   type: mapping
23   mapping:
24     bundles:
25       type: sequence
26       label: 'Bundles'
27       sequence:
28         type: string
29         label: 'Bundle'
30     access:
31       type: boolean
32       label: 'Access'
33     operation:
34       type: string
35       label: 'Access operation to check'
36     multiple:
37       type: integer
38       label: 'Multiple arguments'
39
40 views.argument_validator.entity:*:
41   type: views.argument_validator_entity