OS2Forms Drupal 10 module is available to download via composer.
composer require os2forms/os2forms
drush pm:install os2formsIf you don't have Drupal installed on you server, you will to need install it first. Read more about how to install drupal core.
To get more benefits on your Drupal project we recommend you use OS2web as installation profile for Drupal.
You can easy download and install OS2web installation profile to your composer based Drupal project with commands:
composer require os2web/os2web
drush site:install os2web --db-url=mysql://db_user:db_pass@mysql_host/db_name --locale=da --site-name="OS2Forms" --account-pass=admin -yUpdating process for OS2forms module is similar to usual Drupal 10 module. Use Composer's built-in command for listing packages that have updates available:
composer outdated os2forms/os2formsSee OS2Forms testing and CI information
The OS2Forms project is open for new features and bugfixes. If you have any suggestion, or you found a bug in the project, you are very welcome to create an issue in github repository issue tracker. For issue description was ask that you will provide clear and sufficient information about your feature request or bug report.
See OS2Forms code review policy
See OS2Forms git name convention
Each webform, along with all its settings, is stored as configuration in the
database and can be exported as a yml file through Drupal's configuration
management system, making it trackable via git.
This means that webform settings in the Drupal database will be synchronized
(exported/imported) with the state defined in yml files located in the
configuration folder of your git repository. Without taking the appropriate
precautions, webforms may be deleted or reverted to the state captured in
those yml files during synchronization.
To prevent this, we recommend using the
Config ignore-module, which
allows you to exclude specific settings from the configuration management
export/import process.
Similar to webforms, settings for the CPR and CVR Serviceplatformen plugins
are stored as configuration in the database and can be exported as yml files
through Drupal's configuration management system, making them trackable via
git.
Note that if your git repository is publicly accessible, these plugin settings
— which may contain sensitive information — will be exposed. As with webforms,
we recommend using the Config ignore-module to exclude them from the
export/import process.
The two cases above are just some examples of configuration that may be
sensitive or subject to unintended changes during synchronization. In general,
any configuration that is environment-specific, contains sensitive data, or is
managed directly in the database rather than through code should be considered
for exclusion via the Config ignore-module.
This feature is still not part of Webform and Entity print modules stable versions due to following issues:
- [Webform] Unlock possibility of using Entity print module export to Word feature
- [Entity Print] Add Export to Word Support
To get this functionality on drupal project there will be applied patches from issues above via Composer.
NOTE: If you are downloading os2forms module without using composer, be aware that you have apply those patches by yourself.
Our coding are checked by GitHub Actions (cf. .github/workflows/pr.yml). Use the commands below to run the checks locally.
docker compose pull
docker compose run --rm php composer install
# Fix (some) coding standards issues.
docker compose run --rm php composer coding-standards-apply
docker compose run --rm php composer coding-standards-checkTip
If the composer install commands fails with
Unable to install module simplesamlphp/simplesamlphp-assets-base, package name must be on the form "VENDOR/simplesamlphp-module-MODULENAME".
you can remove the vendor folder and rerun the composer install command (cf.
https://www.drupal.org/project/simplesamlphp_auth/issues/3350773).
docker compose pull
docker compose run --rm markdownlint markdownlint '**/*.md' --fix
docker compose run --rm markdownlint markdownlint '**/*.md'We use PHPStan for static code analysis.
Running static code analysis on a standalone Drupal module is a bit tricky, so we use a helper script to run the analysis:
docker compose run --rm php ./scripts/code-analysisNote: Currently the code analysis is only run on the os2forms_digital_post and os2forms_fbs_handler sub-modules
(cf. phpstan.neon).