config:export:view
Exportar una vista amb el format YAML en un mòdul per reutilitzar-lo en un altre lloc web.
Usage:
drupal config:export:view [arguments] [options]
cev
Available options
Option | Details |
---|---|
--module | Nom del mòdul. |
--optional-config | Exportar vista com a configuració YAML opcional en el teu mòdul |
--include-module-dependencies | Incloure les dependències del mòdul en un fitxer YAML |
--remove-uuid | If set, the configuration will be exported without uuid key. |
--remove-config-hash | If set, the configuration will be exported without the default site hash key. |
Available arguments
Argument | Details |
---|---|
view-id | Identificador de la vista |
Examples
Provide a view id
drupal config:export:view viewid
You can provide the interactive values like parameter.
drupal config:export:view viewid \
--module="modulename" \
--optional-config \
--include-module-dependencies
Export as config for the provided module, updating the module's info.yml with any module dependencies from the view.
drupal config:export:view viewid \
--module="modulename" \
--optional-config \
--include-module-dependencies