first commit

This commit is contained in:
2024-07-15 12:33:27 +02:00
commit ce50ae282b
22084 changed files with 2623791 additions and 0 deletions

View 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

View 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 %}

View File

@@ -0,0 +1,6 @@
<?php
/**
* @file
* Install, update and uninstall functions for the {{ name }} module.
*/

View File

@@ -0,0 +1,6 @@
<?php
/**
* @file
* Primary module hooks for {{ name }} module.
*/