generate:entity:content
Génère une nouvelle entité de contenu
Utilisation:
drupal generate:entity:content [options]
geco
Options disponibles
Option | Détails |
---|---|
--module | Le nom du module. |
--entity-class | La classe de l'entité de contenu |
--entity-name | Le nom de l'entité |
--base-path | Le chemin de base des routes de l'entité de contenu |
--label | Le libellé |
--has-bundles | Est-ce que l'entité possède des bundles |
--is-translatable | Entité de contenu traduisible |
--revisionable | commands.generate.entity.content.options.revisionable |
--has-forms | Entity has forms |
--has-owner | Entity has owner |
Exemples
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