Initial Drupal 11 with DDEV setup

This commit is contained in:
gluebox
2025-10-08 11:39:17 -04:00
commit 89ef74b305
25344 changed files with 2599172 additions and 0 deletions

View File

@ -0,0 +1,5 @@
langcode: en
status: true
dependencies: { }
id: default
label: Default

View File

@ -0,0 +1,32 @@
# Schema for the configuration files of the Shortcut module.
shortcut.set.*:
type: config_entity
label: 'Shortcut settings'
mapping:
id:
type: machine_name
label: 'ID'
# Shortcut set IDs are specifically limited to 23 characters, and allow
# dashes but not underscores.
# @see \Drupal\shortcut\ShortcutSetForm::form()
constraints:
Regex:
pattern: '/^[a-z0-9-]+$/'
message: "The %value machine name is not valid."
Length:
max: 23
label:
type: required_label
label: 'Label'
constraints:
FullyValidatable: ~
# Schema for theme settings.
theme_settings.third_party.shortcut:
type: mapping
label: 'Shortcut settings'
mapping:
module_link:
type: boolean
label: 'Add shortcut link'