You are here

EntityFormMode.php in Lightning Core 8.2

File

src/Entity/EntityFormMode.php
View source
<?php

namespace Drupal\lightning_core\Entity;

use Drupal\Core\Entity\Entity\EntityFormMode as BaseEntityFormMode;
use Drupal\Core\Entity\EntityDescriptionInterface;
use Drupal\lightning_core\ConfigEntityDescriptionTrait;

/**
 * Adds description support to entity form modes.
 */
class EntityFormMode extends BaseEntityFormMode implements EntityDescriptionInterface {
  use ConfigEntityDescriptionTrait;

}

Classes

Namesort descending Description
EntityFormMode Adds description support to entity form modes.