generate:entity:content
Új tartalom entitás létrehozása
Usage:
drupal generate:entity:content [options]
geco
Available options
Option | Details |
---|---|
--module | A modul neve. |
--entity-class | A tartalom entitás osztály |
--entity-name | A tartalom entitás neve |
--base-path | A tartalom entitás útvonalak alapútvonala |
--label | A felirat |
--has-bundles | Az entitás nem rendelkezik mezőcsoportokkal |
--is-translatable | Content entity translatable |
--revisionable | commands.generate.entity.content.options.revisionable |
--has-forms | Entity has forms |
--has-owner | Entity has owner |
Examples
Generate a content entity specifying the module, the entity class, the entity name, its path and label
drupal generate:entity:content \
--module="modulename" \
--entity-class="DefaultEntity" \
--entity-name="default_entity" \
--base-path="/admin/structure" \
--label="Default entity"
Generate a translatable and revisionable content entity specifying the module, the entity class, the entity name, its path and label
drupal generate:entity:content \
--module="modulename" \
--entity-class="DefaultEntity" \
--entity-name="default_entity" \
--base-path="/admin/structure" \
--label="Default entity" \
--is-translatable \
--revisionable