diff --git a/core/composer.json b/core/composer.json index c3600ab..e399eb2 100644 --- a/core/composer.json +++ b/core/composer.json @@ -110,6 +110,7 @@ "drupal/image": "self.version", "drupal/inline_form_errors": "self.version", "drupal/language": "self.version", + "drupal/layout_builder": "self.version", "drupal/layout_discovery": "self.version", "drupal/link": "self.version", "drupal/locale": "self.version", diff --git a/core/modules/layout_builder/layout_builder.module b/core/modules/layout_builder/layout_builder.module new file mode 100644 index 0000000..ab80ff5 --- /dev/null +++ b/core/modules/layout_builder/layout_builder.module @@ -0,0 +1,19 @@ +' . t('About') . ''; + $output .= '

' . t('Layout Builder provides layout building utility, surprisingly.') . '

'; + $output .= '

' . t('For more information, see the online documentation for the Layout Builder module.', [':layout-builder-documentation' => 'https://www.drupal.org/docs/8/core/modules/layout_builder']) . '

'; + return $output; + } +}