Initial Drupal 11 with DDEV setup
This commit is contained in:
30
vendor/chi-teck/drupal-code-generator/templates/_module/README.md.twig
vendored
Normal file
30
vendor/chi-teck/drupal-code-generator/templates/_module/README.md.twig
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
## INTRODUCTION
|
||||
|
||||
The {{ name }} module is a DESCRIBE_THE_MODULE_HERE.
|
||||
|
||||
The primary use case for this module is:
|
||||
|
||||
- Use case #1
|
||||
- Use case #2
|
||||
- Use case #3
|
||||
|
||||
## REQUIREMENTS
|
||||
|
||||
DESCRIBE_MODULE_DEPENDENCIES_HERE
|
||||
|
||||
## INSTALLATION
|
||||
|
||||
Install as you would normally install a contributed Drupal module.
|
||||
See: https://www.drupal.org/node/895232 for further information.
|
||||
|
||||
## CONFIGURATION
|
||||
- Configuration step #1
|
||||
- Configuration step #2
|
||||
- Configuration step #3
|
||||
|
||||
## MAINTAINERS
|
||||
|
||||
Current maintainers for Drupal 10:
|
||||
|
||||
- FIRST_NAME LAST_NAME (NICKNAME) - https://www.drupal.org/u/NICKNAME
|
||||
|
||||
11
vendor/chi-teck/drupal-code-generator/templates/_module/model.info.yml.twig
vendored
Normal file
11
vendor/chi-teck/drupal-code-generator/templates/_module/model.info.yml.twig
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
name: '{{ name }}'
|
||||
type: module
|
||||
description: '{{ description }}'
|
||||
package: {{ package }}
|
||||
core_version_requirement: ^10 || ^11
|
||||
{% if dependencies %}
|
||||
dependencies:
|
||||
{% for dependency in dependencies %}
|
||||
- {{ dependency }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
6
vendor/chi-teck/drupal-code-generator/templates/_module/model.install.twig
vendored
Normal file
6
vendor/chi-teck/drupal-code-generator/templates/_module/model.install.twig
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Install, update and uninstall functions for the {{ name }} module.
|
||||
*/
|
||||
6
vendor/chi-teck/drupal-code-generator/templates/_module/model.module.twig
vendored
Normal file
6
vendor/chi-teck/drupal-code-generator/templates/_module/model.module.twig
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Primary module hooks for {{ name }} module.
|
||||
*/
|
||||
Reference in New Issue
Block a user