Mercurial > hg > isophonics-drupal-site
annotate core/modules/tour/config/schema/tour.schema.yml @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 4c8ae668cc8c |
children |
rev | line source |
---|---|
Chris@0 | 1 # Schema for the configuration files of the Tour module. |
Chris@0 | 2 |
Chris@0 | 3 tour.tour.*: |
Chris@0 | 4 type: config_entity |
Chris@0 | 5 label: 'Tour settings' |
Chris@0 | 6 mapping: |
Chris@0 | 7 id: |
Chris@0 | 8 type: string |
Chris@0 | 9 label: 'ID' |
Chris@0 | 10 label: |
Chris@0 | 11 type: label |
Chris@0 | 12 label: 'Label' |
Chris@0 | 13 module: |
Chris@0 | 14 type: string |
Chris@0 | 15 label: 'Providing module' |
Chris@0 | 16 routes: |
Chris@0 | 17 type: sequence |
Chris@0 | 18 label: 'Route settings' |
Chris@0 | 19 sequence: |
Chris@0 | 20 type: route |
Chris@0 | 21 label: 'Route' |
Chris@0 | 22 tips: |
Chris@0 | 23 type: sequence |
Chris@0 | 24 label: 'Tips' |
Chris@0 | 25 sequence: |
Chris@0 | 26 type: tour.tip.[plugin] |
Chris@0 | 27 label: 'Tour tip' |
Chris@0 | 28 |
Chris@0 | 29 tour.tip: |
Chris@0 | 30 type: mapping |
Chris@0 | 31 label: 'Tour tip' |
Chris@0 | 32 mapping: |
Chris@0 | 33 id: |
Chris@0 | 34 type: string |
Chris@0 | 35 label: 'ID' |
Chris@0 | 36 plugin: |
Chris@0 | 37 type: string |
Chris@0 | 38 label: 'Plugin' |
Chris@0 | 39 label: |
Chris@0 | 40 type: label |
Chris@0 | 41 label: 'Label' |
Chris@0 | 42 weight: |
Chris@0 | 43 type: integer |
Chris@0 | 44 label: 'Weight' |
Chris@0 | 45 location: |
Chris@0 | 46 type: string |
Chris@0 | 47 label: 'Location' |
Chris@0 | 48 attributes: |
Chris@0 | 49 type: sequence |
Chris@0 | 50 label: 'Attributes' |
Chris@0 | 51 sequence: |
Chris@0 | 52 type: string |
Chris@0 | 53 label: 'Attribute' |
Chris@0 | 54 |
Chris@0 | 55 tour.tip.text: |
Chris@0 | 56 type: tour.tip |
Chris@0 | 57 label: 'Textual tour tip' |
Chris@0 | 58 mapping: |
Chris@0 | 59 body: |
Chris@0 | 60 type: text |
Chris@0 | 61 label: 'Body' |