Creating a custom content type in Drupal 8

Last updated on
23 February 2024

This documentation needs work. See "Help improve this page" in the sidebar.

Creating a custom content type became quite easy, thanks to the new Configuration API that comes with Drupal 8.

Prerequisites

  • Drupal 8.0.x installed
  • Have a custom module (the name of the module used in this example is foobar)

Creating the custom content type

As mentioned in the introduction, creating a custom content type is done by creating several YAML files that contain all the required configuration. In this example, we will create a content type Car Brand that will contain two (default) fields: body and title.

foobar/config/install/node.type.car_brand.yml

This file will inform Drupal that it should create a new content type.

Note: Be advised that we're adding an enforced dependency to the foobar module. If we don't add this dependency, Drupal will not remove the content type when we uninstall our module. When a site builder decides that this module is no longer required, we don't want to have the content type available anymore.

# node.type.car_brand.yml
langcode: en
status: true
dependencies:
  enforced:
    module:
      - foobar # This is the name of the module we're using for this example
name: 'Car Brand'
type: car_brand
description: 'Content type that can be used to provide additional information on <em>Car Brands</em>'
help: ''
new_revision: false
preview_mode: 1
display_submitted: true

foobar/config/install/field.field.node.car_brand.body.yml

This file will add the body field to our content type.

# field.field.node.car_brand.body.yml
langcode: en
status: true
dependencies:
    config:
        - field.storage.node.body
        - node.type.car_brand
    module:
        - text
id: node.car_brand.body
field_name: body
entity_type: node
bundle: car_brand
label: Body
description: 'More specific information about the car brand.'
required: false
translatable: true
default_value: {  }
default_value_callback: ''
settings:
    display_summary: true
field_type: text_with_summary

foobar/config/install/core.entity_view_display.node.car_brand.teaser.yml

This file tells Drupal how the teaser of our custom content type should be displayed.

# core.entity_view_display.node.car_brand.teaser.yml
langcode: en
status: true
dependencies:
    config:
        - core.entity_view_mode.node.teaser
        - field.field.node.car_brand.body
        - node.type.car_brand
    module:
        - text
        - user
id: node.car_brand.teaser
targetEntityType: node
bundle: car_brand
mode: teaser
content:
    body:
        label: hidden
        type: text_summary_or_trimmed
        weight: 101
        settings:
            trim_length: 600
        third_party_settings: {  }
    links:
        weight: 100
hidden: {  }

foobar/config/install/core.entity_view_display.node.car_brand.default.yml

This file tells Drupal how the content of our custom content type should be displayed by default.

# core.entity_view_display.node.car_brand.default.yml
langcode: en
status: true
dependencies:
    config:
        - field.field.node.car_brand.body
        - node.type.car_brand
    module:
        - text
        - user
id: node.car_brand.default
targetEntityType: node
bundle: car_brand
mode: default
content:
    body:
        label: hidden
        type: text_default
        weight: 101
        settings: {  }
        third_party_settings: {  }
    links:
        weight: 100
hidden: {  }

foobar/config/install/core.entity_form_display.node.car_brand.default.yml

This file tells Drupal how the form should be displayed when creating a new node of our custom content type.

# core.entity_form_display.node.car_brand.default.yml
langcode: en
status: true
dependencies:
    config:
        - field.field.node.car_brand.body
        - node.type.car_brand
    module:
        - text
        - user
id: node.car_brand.default
targetEntityType: node
bundle: car_brand
mode: default
content:
    body:
        label: hidden
        type: text_textarea_with_summary
        weight: 101
        settings: {  }
        third_party_settings: {  }
    links:
        weight: 100
hidden: {  }

Enable the custom content type

Now that we have our configuration files in place, we need to inform Drupal about our new custom content type. This is done by re-installing the module. If your module has not yet been enabled, then just enable the module. If your module was already enabled, uninstall the module and enable it again.
If you now go to the Create content page, you will see that you're able to create a new node of the content type "Car Brand".

Help improve this page

Page status: Needs work

You can: