clean install

This commit is contained in:
2024-12-10 15:08:16 +01:00
commit e14eb2d8fd
31193 changed files with 3555714 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
# Schema for the configuration files of the Tour module.
tour.tour.*:
type: config_entity
label: 'Tour settings'
mapping:
id:
type: machine_name
label: 'ID'
constraints:
# Tour IDs also allow dashes.
Regex:
pattern: '/^[a-z0-9_-]+$/'
message: "The %value machine name is not valid."
label:
type: required_label
label: 'Label'
module:
type: string
label: 'Providing module'
routes:
type: sequence
label: 'Route settings'
sequence:
type: route
label: 'Route'
tips:
type: sequence
label: 'Tips'
sequence:
type: tour.tip.[plugin]
label: 'Tour tip'
tour.tip:
type: mapping
label: 'Tour tip'
mapping:
id:
type: string
label: 'ID'
plugin:
type: string
label: 'Plugin'
constraints:
PluginExists:
manager: plugin.manager.tour.tip
interface: '\Drupal\tour\TipPluginInterface'
label:
type: required_label
label: 'Label'
weight:
type: weight
label: 'Weight'
position:
type: string
label: 'Position'
selector:
type: string
label: 'Selector'
tour.tip.text:
type: tour.tip
label: 'Textual tour tip'
mapping:
body:
type: text
label: 'Body'