You are here

public function DefaultContentDeployCommands::contentEntityList in Default Content Deploy 8

List current content entity types.

@command default-content-deploy:entity-list @usage drush dcd-entity-list Displays all current content entity types. @aliases dcd-entity-list,default-content-deploy-entity-list

File

src/Commands/DefaultContentDeployCommands.php, line 324

Class

DefaultContentDeployCommands
Class DefaultContentDeployCommands.

Namespace

Drupal\default_content_deploy\Commands

Code

public function contentEntityList() {
  $content_entity_list = $this
    ->getAvailableEntityTypes();
  $this
    ->output()
    ->writeln($content_entity_list);
}